If you want the output earlier, don't read it into memory all at once.
@outlines = <HIS_OUT>;
will read the output all at once.
You can try using a while loop:
while (defined (my $line = <HIS_OUT>)) { chomp; print "Read: '$line'\n"; };
In reply to Re^5: IPC::Open3 woes
by Corion
in thread Re^4: IPC::Open3 woes
by ajayguptab
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |