Skip to content

Instantly share code, notes, and snippets.

@bvandgrift
Created September 20, 2012 13:09
Show Gist options
  • Save bvandgrift/3755796 to your computer and use it in GitHub Desktop.
Save bvandgrift/3755796 to your computer and use it in GitHub Desktop.
lazy? i am. so here's xkcd #1110's images.
#!/bin/env bash
for x in `seq 1 20`; do
for y in `seq 1 20`; do
for n in n s; do
for e in e w; do
wget "http://imgs.xkcd.com/clickdrag/${x}${n}${y}${e}.png"
sleep 1
done
done
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment