/ 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.
adkatrit on 03/18/10
number mac numbers osx prime theory
1 person have marked this snippet as a favorite
for i in {1..50}; do wget "http://primes.utm.edu/lists/small/millions/primes$i.zip"; done
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.