script to download all demotivator images
## For Linux users, as usual :o)
wget -r -nd http://www.despair.com/viewall.html
a="http://demotivators.despair.com/"
c="demotivator.jpg"
for i in `ls *.html`; do b=`basename $i .html`; echo "$a$b$c" ; wget -r -A.jpg "$a$b$c" ; done
wget -r -nd http://www.despair.com/viewall.html
a="http://demotivators.despair.com/"
c="demotivator.jpg"
for i in `ls *.html`; do b=`basename $i .html`; echo "$a$b$c" ; wget -r -A.jpg "$a$b$c" ; done