in reply to Re: return code 139in thread return code 139
The following is from perldoc -f system:
You can check all the failure possibilities by inspecting `$?' like this:
$exit_value = $? >> 8; $signal_num = $? & 127; $dumped_core = $? & 128; [download]
-rr