Skip to content

Instantly share code, notes, and snippets.

@gildo
Created December 7, 2010 11:54
Show Gist options
  • Save gildo/731717 to your computer and use it in GitHub Desktop.
Save gildo/731717 to your computer and use it in GitHub Desktop.
Stupid megaupload downloader
require'mechanize';require'open-uri'
a=Mechanize.new.get(ARGV[0]).link_with(:href=>/files/).href
b=a.split("/")[-1]
puts "Downloading #{b}"
system "wget '#{a}'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment