Re: Long Running Processes & Flushing output part way through.

2001-10-29 Thread Jeff 'japhy' Pinyan
On Oct 29, Kingsbury, Michael said: >open ( LOG, "/tmp/log"); >autoflush LOG 1; >print LOG `/path/to/2hour/process`; >close (LOG); > >This doesn't generate the expected results, ie, I don't get any output until >the end. That's because `...` doesn't return any input until the process finishes.

Long Running Processes & Flushing output part way through.

2001-10-29 Thread Kingsbury, Michael
I'm running a command similar to the following: open ( LOG, "/tmp/log"); autoflush LOG 1; print LOG `/path/to/2hour/process`; close (LOG); This doesn't generate the expected results, ie, I don't get any output until the end. Any ideas on how to get the output part way through? Splitt