Skip to content

Instantly share code, notes, and snippets.

@bastos
Created February 2, 2009 10:29
Show Gist options
  • Save bastos/56866 to your computer and use it in GitHub Desktop.
Save bastos/56866 to your computer and use it in GitHub Desktop.
Download all videos from Ruby Conf 2008 Confreaks Website
#!/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