views:

6

answers:

2

How to write a script to download all videos from the links in a webpage

Hey Guys, I want to write a script to download all rails screen casts from this location http://railscasts.com/episodes/archive Any ideas on how this can be automated?

+1  A: 

I'd personally go with wget -l inf -r -np http://railscasts.com/episodes.

Tass
A: 

Just ran the command a while back and its working. Thanks Tass <3

HoldenCaulfield