Help for this page
perldoc -q STDERR
Found in C:\Perl\lib\pod\perlfaq8.pod How can I capture STDERR from an external command? ... $output = `cmd 2>&1`; # either with backticks $pid = open(PH, "cmd 2>&1 |"); # or with an open pipe while (<PH>) { } # plus a read