Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Check if "System" was succesful

by matija (Priest)
on Apr 09, 2004 at 13:46 UTC ( [id://343906]=note: print w/replies, xml ) Need Help??


in reply to Check if "System" was succesful

You should check the value of $?.

From perldoc perlvar:

    $?      The status returned by the last pipe close, backtick (``) command, successful call to wait() or waitpid(), or from the system() operator. This is just the 16-bit status word returned by the wait() system call (or else is made up to look like it).

Thus, the exit value of the subprocess is really ("$? >> 8"), and "$? & 127" gives which signal, if any, the process died from, and "$? & 128" reports whether there was a core dump.

(Mnemonic: similar to sh and ksh.)

...

If you have installed a signal handler for "SIGCHLD", the value of $? will usually be wrong outside that handler.

....

Also see "Error Indicators".

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://343906]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-23 17:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found