in reply to
How can I redirect STDOUT and STDERR from a program on WIN32?
It can be done by redirecting STDERR to STDOUT: my $output = `program 2>&1`; print $output;
Comment on
Re: How can I redirect STDOUT and STDERR from a program on WIN32?
In Section
Seekers of Perl Wisdom