- or download this
$SIG{__DIE__}= sub {
die @_ if $^S;
# rest of code here
};
- or download this
$SIG{__DIE__}= sub {
die @_ if @^S;
doStuffWith( $_[0] );
};
doEverythingElse();
exit 0;
- or download this
eval {
doEverythingElse();
1;
...
doStuffWith( $@ );
};
exit 0;