Skip to content

Instantly share code, notes, and snippets.

@SethosII
SethosII / xkcd.sh
Last active November 16, 2019 20:39
Download all of the xkcd comics
#!/bin/bash
TOTAL=$(curl https://xkcd.com/info.0.json 2> /dev/null | grep -Po '"num": [0-9]+' | grep -Po '[0-9]+')
# download JSON and image file
echo "downloading ..."
for i in $(seq 1 $TOTAL)
do
echo -ne "\r$i/$TOTAL"