
Downloading Imgur Gallery - WGET - BASH
By:
metalx1000 on
Dec 1st, 2011 | syntax:
Bash | size: 0.18 KB | hits: 627 | expires: Never
#!/bin/bash
wget -q "http://imgur.com/gallery" -O -|grep 'post"'|cut -d\" -f2|while read id
do
echo "Downloading $id.jpg"
wget -q -c "http://i.imgur.com/$id.jpg"
done