in reply to Re^2: Capturing STDERR using IO::Handle
in thread Capturing STDERR using IO::Handle
Here is a script that saves, redirects, and restores STDOUT and STDERR using various methods:It would be straightforward to then slurp in the contents of the saved-off files. Or did I misunderstand the question?#!/usr/bin/perl 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";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Capturing STDERR using IO::Handle
by xdg (Monsignor) on Nov 26, 2007 at 21:39 UTC | |
|
Re^4: Capturing STDERR using IO::Handle
by ikegami (Patriarch) on Nov 26, 2007 at 18:19 UTC | |
by educated_foo (Vicar) on Nov 26, 2007 at 21:00 UTC | |
by ikegami (Patriarch) on Nov 26, 2007 at 23:05 UTC |