Created
February 27, 2014 01:40
-
-
Save chuckwagoncomputing/9242595 to your computer and use it in GitHub Desktop.
get xkcd now image files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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