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\¤t=//g'|while read line
do
wget -c "$line"
done