in reply to External command execution - Strange Error - No child process
I am executing a external command ( tar ) using backtick, while checking the return value it gives -1Please show your code. What value do you expect backticks to return? Backticks return the output of the external command, which is different from the exit status of the command. See also system.
and the $! gives no child process errorWhy are you checking $!? Maybe $? is more appropriate.
|
|---|