/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; }
In reply to How do you properly tty-ify a non-tty STDOUT? by ph713
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |