Created
February 2, 2009 10:29
-
-
Save bastos/56866 to your computer and use it in GitHub Desktop.
Download all videos from Ruby Conf 2008 Confreaks Website
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'hpricot' | |
require 'open-uri' | |
open('http://feeds.feedburner.com/Rubyconf2008-Confreaks') do |f| | |
Hpricot.XML(f).search("link").each do |link| | |
puts "Downloading #{link.inner_text}" | |
`wget -c #{link.inner_text}` | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment