If I run a simple script using openuri, I can access a web page. The results get written to the terminal.

Normally I would use bash redirection to write the results to a file.

How do I use ruby to write the results of an openuri call to a file?

link|improve this question
openuri is a funny name. – Dhaivat Pandya Jun 12 '11 at 9:34
feedback

2 Answers

up vote 3 down vote accepted
open("file_to_write", "wb") do |file|
  open("http://www.ruby-lang.org/") do |uri|
     file.write(uri.read)
  end
end
link|improve this answer
Needs a "require 'open-uri'" for this to work! – nimrodm Jun 12 '11 at 10:07
Yes. Didn't mention it because Bob already uses it. – Michaël Witrant Jun 12 '11 at 10:40
feedback

The pickaxe to the rescue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.