Re: Marshal Pipe

Robert:

ruby -e ‘10.times {|i| Marshal.dump(i, $stdout) }’ | ruby -e ‘until
$stdin.eof?; p Marshal.load($stdin) end’

THANKS!!!
Did not recognized it at first read, because it’s a bit cryptic.
-Carlos