Skip to content

Instantly share code, notes, and snippets.

@chuckwagoncomputing
Created February 27, 2014 01:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuckwagoncomputing/9242595 to your computer and use it in GitHub Desktop.
Save chuckwagoncomputing/9242595 to your computer and use it in GitHub Desktop.
get xkcd now image files
#!/bin/bash
for HOUR in {00..23}; do
for MINUTE in 00 15 30 45; do
wget "http://imgs.xkcd.com/comics/now/"$HOUR"h"$MINUTE"m.png"
done
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment