in reply to Capturing STDOUT and STDERR of system command, with pure perl?

From open:

open my $oldout, ">&STDOUT" or die "Can't dup STDOUT: $!"; open OLDERR, ">&", \*STDERR or die "Can't dup STDERR: $!"; open STDOUT, '>', "foo.out" or die "Can't redirect STDOUT: $!"; open STDERR, ">&STDOUT" or die "Can't dup STDOUT: $!"; select STDERR; $| = 1; # make unbuffered select STDOUT; $| = 1; # make unbuffered print STDOUT "stdout 1\n"; # this works for print STDERR "stderr 1\n"; # subprocesses too open STDOUT, ">&", $oldout or die "Can't dup \$oldout: $!"; open STDERR, ">&OLDERR" or die "Can't dup OLDERR: $!"; print STDOUT "stdout 2\n"; print STDERR "stderr 2\n";

Are any of these methods suitable when used couples with the open FH, "<", \$string method?

updated

Replies are listed 'Best First'.
Re^2: Capturing STDOUT and STDERR of system command, with pure perl?
by EvanK (Chaplain) on Aug 24, 2007 at 14:49 UTC
    Perhaps I needed to be more specific. I'm wanting to capture the stdout/err of the command i'm executing in the script. Not the stdout/err of the script itself.

    __________
    Systems development is like banging your head against a wall...
    It's usually very painful, but if you're persistent, you'll get through it.