in reply to Re: Error trapping while capturing stdout
in thread Error trapping while capturing stdout

I will look at IPC::Open3 based on your suggestion, but I am now very leary of introducing modules into an solution if they don't come with the standard Perl load. It adds a level of complexity to support. I'm willing to handle that extra complexity, if the module delivers above and beyond expectations. Otherwise, it may be better to stick with core Perl solutions.

Thanks for your input.

  • Comment on Re^2: Error trapping while capturing stdout

Replies are listed 'Best First'.
Re^3: Error trapping while capturing stdout
by ikegami (Patriarch) on Sep 14, 2004 at 16:09 UTC
    I think it does come with perl; it came with mine, and it's not in site/. It's really just a wrapper for fork()+exec(), so no biggie if you don't use it. Check out the perlipc doc/man page for an example using fork()+exec().