IFS=" " for C in Africa Antarctica Asia Australasia Europe North_America South_America do mkdir -p GIS/$C wget -O jeter.html -q "http://www.maproom.psu.edu/cgi-bin/dcw/dcwarea.cgi?$C" for P in `egrep '^<OPTION' jeter.html | cut -d '>' -f2` do curl -d "area=$C" -d "country=$P" -o jeter2.html "http://www.maproom.psu.edu/cgi-bin/dcw/dcwcountry0.cgi" P2=`grep FORM jeter2.html | grep point10 | tr "<>" "\n\n" | grep count| cut -d ' ' -f4 | cut -d '=' -f2` #curl -d "country=$P2" -o jeter3.txt "http://www.maproom.psu.edu/cgi-bin/dcw/point10.cgi" wget -O jeter2.html "http://www.maproom.psu.edu/cgi-bin/dcw/point10.cgi?country=$P2" P3=`cat jeter2.html | tr " >" "\n\n" | grep ftp` echo "##### $P2 $P3" wget -O jeter3.txt "$P3" mv jeter3.txt > GIS/$C/${P2}.js sleep 3 done done
You need to create an account or log in to post comments to this site.