Created
June 1, 2014 19:21
-
-
Save mcandre/7fe790023de279bce84d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "" = "$2" ] | |
then | |
dA=`wget -O- "http://backend.deviantart.com/rss.xml?q=gallery%3A$1+sort%3Atime&type=deviation"` | |
else | |
dA=`wget -O- "$2"` | |
fi | |
echo $dA | xmlstarlet sel -T -t -v //media:content/@url | xargs wget | |
NEXT=`echo $dA | xmlstarlet sel -T -t -v "//atom:link[@rel='next']/@href"` | |
if [ "" != "$NEXT" ] | |
then | |
$0 $1 $NEXT | |
else | |
echo Done | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment