2020-02-19 16:40:41 +05:30
|
|
|
# "exit" in trap should not use last command's exitcode,
|
|
|
|
# but exitcode on entering the trap.
|
|
|
|
$THIS_SH -c '
|
|
|
|
trap "false;exit" term
|
|
|
|
kill $$ &
|
2020-02-26 13:35:52 +05:30
|
|
|
(sleep 1; exit 42)
|
2020-02-19 16:40:41 +05:30
|
|
|
'
|
|
|
|
echo 42:$?
|