Skip to content

Instantly share code, notes, and snippets.

@nkmathew
Created June 25, 2015 23:41
Show Gist options
  • Save nkmathew/13253036357a33119e7c to your computer and use it in GitHub Desktop.
Save nkmathew/13253036357a33119e7c to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in `seq 1 1542`; do
rm index.html
wget http://xkcd.com/$i/
IMG_URL=$(grep http://imgs.xkcd.com/comics/ index.html | head -1 | awk -F': ' '{print $2}')
IMG_NAME=$(echo $IMG_URL | awk -F'comics/' '{print $2}')
FULL_NAME="xkcd-$i-$IMG_NAME"
wget $IMG_URL -O $FULL_NAME
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment