in reply to Re: output from an external program
in thread output from an external program
the loop will run as long as data kept coming from STDIN, and all data will be piped into extprog inside the loop.while (<>)
which would require extproc to produce output for the loop to run. Since extproc requires input to produce output it would never run, atleast not the way my example was written.while (<EXT>)
|
|---|