From: ts Date: 2004-05-19T00:48:16+09:00 Subject: Re: stream filtering >>>>> "R" == Ryan Paul writes: R> printed text. If it is possible, I would really appreciate a sample. If it Something like this ? svg% cat b.rb #!/usr/bin/ruby class A def initialize @io = File.new("aa", "w") end def write(mess) @io.write(mess) end end $stdout = A.new puts "hello" svg% svg% b.rb svg% svg% cat aa hello svg% Guy Decoux