Never been to DZone Snippets before?

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

About this user

Alexandru Scvortov

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Download all xkcd.com comics

This goes through all the first 329 (you might want to change this) pages, downloading the comic strips.

   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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS