in reply to Re: What happens to a '-|' (pipe) file handle across a fork()? (misfeature)
in thread What happens to a '-|' (pipe) file handle across a fork()?
Yeah, the change in Perl such that even the implicit closing of a popen-like file handle waits for the child to exit was a pretty sucky change in my book.Agreed. Sounds like a case of Perl trying to take care of too much for the programmer. Also sounds like there should be a method like:
to get around this.$pipe->nowait(1);
|
|---|