Skip to content

Instantly share code, notes, and snippets.

@wjessop
Created March 28, 2011 23:15
Show Gist options
  • Save wjessop/891522 to your computer and use it in GitHub Desktop.
Save wjessop/891522 to your computer and use it in GitHub Desktop.
octobrain:~ will$ irb
ruby-1.9.2-p0 :001 > $stderr.puts "foo"
foo
=> nil
ruby-1.9.2-p0 :002 > $stderr.reopen(File.open("/dev/null", "w+"))
=> #<File:/dev/null>
ruby-1.9.2-p0 :003 > $stderr.puts "foo"
=> nil
ruby-1.9.2-p0 :004 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment