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.
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