in reply to Re: I got IPC::Open3 to work!
in thread I got IPC::Open3 to work!

The function only returns undef in that instance. I hate having some generic function die on me unexpectedly, especially when my boss calls me up shouting "You're stoopid program doesn't work!" I'd rather leave the choice to the calling program:

callexternalpgm( parms ) or die "$!";
or, more likely,
callexternalpgm( parms ) or LogIt( "Error calling external program: $! +" );
Harley J Pig