Home
Search Perl pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
$CHILD_ERROR
$?
The status returned by the last pipe close, backtick (`` ) command, or system() operator. Note that this is the 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 actually ($? >> 8 ), and
$? & 255 gives which signal, if any, the process died from, and whether there was a
core dump. (Mnemonic: similar to sh and
ksh.)
Note that if you have installed a signal handler for SIGCHLD , the value of $? will usually be wrong outside that handler.
Inside an END subroutine $? contains the value that is going to be given to exit(). You can modify $? in an END subroutine to change the exit status of the script.
Under
VMS, the pragma use vmsish 'status' makes $? reflect the actual
VMS exit status, instead of the default emulation of
POSIX status.
Source: Perl predefined variables Copyright: Larry Wall, et al. |
Next: $OS_ERROR $ERRNO $!
Previous: $ACCUMULATOR $^A
(Corrections, notes, and links courtesy of RocketAware.com)
Up to: Current Process Control
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > Perl >
perlvar/_CHILD_ERROR.htm
RocketAware.com is a service of Mib Software Copyright 2000, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|