Skip to content

Instantly share code, notes, and snippets.

@kunev
Last active February 2, 2017 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kunev/9226256 to your computer and use it in GitHub Desktop.
Save kunev/9226256 to your computer and use it in GitHub Desktop.
download all images from http://xkcd.com/now/
#!/bin/bash
for h in {0..23}
do
hour=`printf "%02d" $h`
for minutes in 00 15 30 45
do
wget https://sslimgs.xkcd.com/comics/now/${hour}h${minutes}m.png
done
done
@FossPrime
Copy link

Now if only there were one that got all the comic images, as to create a slideshow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment