ph713 has asked for the wisdom of the Perl Monks concerning the following question:
/Edited to add more... Round 2: Some more investigation and now I'm at this solution (stolen from some webpage somewhere and hacked up). This seems to get the output through the pty, but the while/print loop at the bottom never terminates, even though the process writing to the filehandle in question is long gone...use IO::Pty; use IO::Handle; open(REAL_STDOUT,">&STDOUT"); my $pty = new IO::Pty; my $slave = $pty->slave; STDOUT->fdopen($slave,'w') || die $!; $pty->fdopen(\*REAL_STDOUT,'w') || die $!; system("echo This is stdout output from an external program");
use IO::Handle; use IO::Pty; + + + sub do_cmd() { my $pty = new IO::Pty; defined (my $child = fork) or die "Can't fork: $!"; return $pty if $child; + POSIX::setsid(); my $slave = $pty->slave; close($pty); STDOUT->fdopen($slave,'>') || die $!; STDERR->fdopen(\*STDOUT,'>') || die $!; system("echo This is stdout output from an external program"); exit 0; } + my $fh = do_cmd(); while(<$fh>) { print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How do you properly tty-ify a non-tty STDOUT?
by sgifford (Prior) on Sep 22, 2004 at 17:41 UTC | |
by ph713 (Pilgrim) on Sep 22, 2004 at 17:47 UTC | |
by ph713 (Pilgrim) on Sep 22, 2004 at 17:54 UTC | |
|
Re: How do you properly tty-ify a non-tty STDOUT?
by etcshadow (Priest) on Sep 22, 2004 at 19:14 UTC | |
|
Re: How do you properly tty-ify a non-tty STDOUT?
by borisz (Canon) on Sep 22, 2004 at 16:08 UTC | |
by ph713 (Pilgrim) on Sep 22, 2004 at 17:35 UTC | |
|
Re: How do you properly tty-ify a non-tty STDOUT?
by ph713 (Pilgrim) on Sep 23, 2004 at 20:22 UTC |