
Imgur Album Downloader, Linux-Ninjas.com
By: a guest on
May 31st, 2012 | syntax:
Bash | size: 0.59 KB | hits: 35 | expires: Never
#!/bin/bash
#----------
#Imgur Album Downloader v0.1 \ www.Linux-Ninjas.com
#----------
function albumtemp()
{
if [ -e .albumtemp ]; then
rm .albumtemp
fi
}
#Check for url + albumtemp
if [ $# == "" ]; then
echo -n "Url:"
read url
albumtemp
else
url="$1"
albumtemp
fi
#echo "url: $url"
if [ "$url" == "" ]; then
echo "You need to enter a url!"
else
curl $url -o .albumtemp
cat .albumtemp | grep _blank | awk '{print $2}' | cut -d \" -f 2 | xargs wget
albumtemp
fi