in reply to Re: External command execution - Strange Error - No child process
in thread External command execution - Strange Error - No child process
You are getting the return value from waitpid probably done automatically by the backticks. The solution is to set
in your Perl script. Or figure out how to localize it$SIG{CHLD} = 'DEFAULT';
local $SIG{CHILD} = 'IGNORE';
|
|---|