2020-02-21 07:25:53 +05:30
|
|
|
# "exit" in trap should not use last command's exitcode,
|
|
|
|
# but exitcode on entering the trap.
|
|
|
|
# Nested trap should not interfere with this.
|
|
|
|
$THIS_SH -c '
|
|
|
|
trap "echo INT" int
|
|
|
|
trap "kill -int $$;exit" term
|
|
|
|
kill $$ &
|
2020-02-26 13:35:52 +05:30
|
|
|
(sleep 1; exit 42)
|
2020-02-21 07:25:53 +05:30
|
|
|
'
|
|
|
|
echo 42:$?
|