3ced804e31
function old new delta check_and_run_traps 276 278 +2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
12 lines
247 B
Plaintext
Executable File
12 lines
247 B
Plaintext
Executable File
# "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 $$ &
|
|
(exit 42)
|
|
wait
|
|
'
|
|
echo 42:$?
|