Skip to content

Instantly share code, notes, and snippets.

@mcandre
Created June 1, 2014 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcandre/5970bf1c0273014a3ff7 to your computer and use it in GitHub Desktop.
Save mcandre/5970bf1c0273014a3ff7 to your computer and use it in GitHub Desktop.
#!/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