in reply to Redirecting all output to a var for post processing?
You might want to save the value of STDOUT if you would like to print something after you are done filtering etc.use vars qw($OUTPUT); use Tie::STDERR \$OUTPUT; *STDOUT=\*STDERR;
goldclaw
|
|---|