/ Published in: Bash
Expand |
Embed | Plain Text
for i in {1..50}; do wget "http://primes.utm.edu/lists/small/millions/primes$i.zip"; done
Comments
Subscribe to comments
You need to login to post a comment.

without explicit loop (and works in Mac OS X) using curl:
curl -O http://primes.utm.edu/lists/small/millions/primes[1-50].zip
good work. this type of stuff is helpful for crawling sites for pages that aren't publicized.