This script is a slight adjustment from http://niczsoft.com/2010/01/download-all-railscasts/
This version gets the railscast movies starting with first, or oldest, movie rather than starting at the lastest first.
wget -q -O - http://feeds.feedburner.com/railscasts |\
awk -F \" '/media:content/ {print $4}' | \
perl -e 'print reverse <>' | \
wget -i - -c
I urge you to read this from Railscasts.com and give back in someway.

Thanks Dom!
ReplyDelete