Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On a bash console, if I do this:

cd mydir
ls -l > mydir.txt

The > operator captures the standard input and redirects it to a file; so I get the listing of files in mydir.txt instead of in the standard output.

Is there any way to do something similar on the rails console?

I've got a ruby statement that generates lots of prints (~8k lines) and I'd like to be able to see it completely, but the console only "remembers" the last 1024 lines or so. So I thought about redirecting to a file - If anyone knows a better option, I'm all ears.

share|improve this question

4 Answers

up vote 23 down vote accepted

You can use override $stdout to redirect the console output:

$stdout = File.new('console.out', 'w')

You may also need to call this once:

$stdout.sync = true

This will redirect all output to the file. If you want to temporarily redirect the output make sure that you store the original value of $stdout so you can change it back.

share|improve this answer
Thank you! This is exactly what I was looking for. – kikito Mar 17 '10 at 13:13
It didn't work for me until I added $stdout.sync=true. Edited. – Peter DeWeese Feb 10 '12 at 16:00
$stdout.reopen("my.log", "w") seems to be a more elegant solution, seen at: stackoverflow.com/a/2480439/21217 – dain Dec 13 '12 at 14:05

If your looking for a quick one off solution simply use the following:

irb(main):015:0> f = File.new("statements.xml", 'w')
irb(main):016:0> f << Account.find(1).statements.to_xml
irb(main):017:0> f.close
share|improve this answer
Exactly what I was looking for, thank you kindly! – kermitology Feb 11 at 20:43

If you write the following code in your environment file, it should work.

if "irb" == $0
  config.logger = Logger.new(Rails.root.join('path_to_log_file.txt'))
end

You can also rotate the log file using

config.logger = Logger.new(Rails.root.join('path_to_log_file.txt'), number_of_files, file_roation_size_threshold)

For logging only active record related operations, you can do

ActiveRecord::Base.logger = Logger.new(Rails.root.join('path_to_log_file.txt'))

This also lets you have different logger config/file for different environments.

share|improve this answer
This is helpful, but the other answer does what I wanted in a simpler way. Thanks for taking the time to answer anyway. – kikito Mar 17 '10 at 13:12

Use hirb. It automatically pages any output in irb that is longer than a screenful. Put this in a console session to see this work:

>> require 'rubygems'
>> require 'hirb'
>> Hirb.enable

For more on how this works, read this post.

share|improve this answer
Thanks for answering, but I wasn't looking for pagination; I wanted to see everything on a single page. – kikito Mar 17 '10 at 17:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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