in reply to Re: Reading from STDOUT after Redirecting it.
in thread Reading from STDOUT after Redirecting it.
It might be worth pointing out that re-opening STDOUT within your perl script will only affect stuff printed by that perl script and not the output from programs you spawn from within your perl script using system. They have their own set of file handles which are independant of those in your script.I don't think that's true; the child process should inherit all the file handles.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Reading from STDOUT after Redirecting it.
by sgifford (Prior) on Jul 03, 2003 at 06:20 UTC |