in reply to
Redirecting STDOUT
If you are on a Unix like system, you can use
open my $fh => "|-"
and
open my $fh => "-|"
as described in
perlipc
. Also very useful for post processing output (or preprocessing input) without changing your existing program.
Abigail
Comment on
Re: Redirecting STDOUT
Select
or
Download
Code
In Section
Seekers of Perl Wisdom