in reply to Howto pass the STDOUT of an executable into an array
or if you would like to make progress visible too:open (IN,"./myexecutab |") ; @catured = <IN> ;
Lucaopen (IN,"./myexecutab |") ; select STDOUT ; $| = 1 ; while(<IN>) { print "." ; ..... }
|
|---|