Download all xkcd.com comics
1 2 #!/bin/bash 3 4 for i in `seq 1 329` 5 do 6 wget http://xkcd.com/$i/ 7 wget `grep http://imgs.xkcd.com/comics/ index.html | head -1 | cut -d\" -f2` 8 rm index.html 9 done
DZone Snippets > scvalex > crawler
13480 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 #!/bin/bash 3 4 for i in `seq 1 329` 5 do 6 wget http://xkcd.com/$i/ 7 wget `grep http://imgs.xkcd.com/comics/ index.html | head -1 | cut -d\" -f2` 8 rm index.html 9 done