mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
10 lines
250 B
Text
Executable file
10 lines
250 B
Text
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 $$ &
|
|
(sleep 1; exit 42)
|
|
'
|
|
echo 42:$?
|