in reply to Re: Re: Sending STDERR to a filehandle
in thread Sending STDERR to a filehandle

Are you sure? Try this on for size:
my $cmd = q(perl -e 'die'); my $pid = open(ERROR, "$cmd 2>&1 1>/dev/null |"); print "$pid\n"; while (<ERROR>) { print "ERROR: $_\n"; }