Skip to content

Instantly share code, notes, and snippets.

@geoghegan
geoghegan / ImgurDownload.sh
Created November 20, 2013 21:40
Download images from Imgur Sub-Reddit
# Downloads the first 100 pages of images from SUBREDDIT
for I in `seq 1 100`; do wget -q "http://imgur.com/r/SUBREDDIT/page/$I" -O - | grep '"post"' | grep class | cut -d\" -f 2 | while read ID; do echo "Downloading $ID.jpg"; wget -q -c "http://i.imgur.com/$ID.jpg"; done; done