Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement