biommap/sandbox/lines-polygons/leaflet/Proj4Leaflet-1.0.1/util/contrib.sh

10 lines
212 B
Bash

if [ -f contributors ];
then
rm contributors
fi
for x
in `curl -K contributors.curl | grep -E -w 'url' | grep -o -E 'https[^"]+'`
do
curl -XGET --url $x -o -| grep -E 'name|html_url' >> contributors
done