![]() |
|
Keep It Simple, Stupid | |
PerlMonks |
Re: DNScmd in perl scriptby pc88mxer (Vicar) |
on Jul 28, 2008 at 21:12 UTC ( #700647=note: print w/replies, xml ) | Need Help?? |
Technically to only test the status code you should use:
The lower eight bits of $? contain the signal that terminated the process. There's more info in the perldoc POSIX documentation. In particular, see the documentation for the functions WEXITSTATUS and WIFEXITED. Note that you shouldn't always trust the status code since it is possible for the command to terminate (like via a signal) before it has a chance to set it.
In Section
Seekers of Perl Wisdom
|
|