notes/Get Album from PhotoBucket with user input-wQ5QGFhZ.sh
#!/bin/bash


echo "Please Enter Album Link:"
read album

wget -q "$album/?start=all" -O-| \
grep "action=view"|grep "^<a href"|cut -d\" -f2| \
sed 's/?action=view\&current=//g'|while read line
do 
    wget -c "$line"
done

syntax highlighted by Code2HTML, v. 0.9.1