Friday, January 28, 2011

Get started with Rails with all the Railscast movies offline

Getting offline content from Railscasts.com is very handy.

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.

1 comments: