in reply to Re (tilly) 1: Problem calling one script from another
in thread Problem calling one script from another
You can check all the failure possibilities by inspecting $? like this: $exit_value = $? >> 8; $signal_num = $? & 127; $dumped_core = $? & 128;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 3: Problem calling one script from another
by tilly (Archbishop) on Dec 11, 2000 at 10:31 UTC |