Downloading dilbert strips
some things fun: i like dilbert and so should you. Its fun, witty, and its online. You can view every strip online. You could use curl or LWP to download strips, but I used bash and wget to do it:
Look!
wget --recursive --convert-links -A gif www.dilbert.com #recursively downloads the .gif images from ww.dilbert.com
cd www.dilbert.com/dyn/str_strip/000000000/00000000/0000000 #changes to the directory with the strips
mv $(find . -name "*.gif" $HOME) #moves the strips to a home directory. I would change this to a directory only for the images
Sometimes existing tools are the right tools. :)