mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
11 lines
175 B
Text
11 lines
175 B
Text
|
|
# "return" in trap sets $? after trap...
|
||
|
|
# ...but not a nested one!
|
||
|
|
g() { echo Nested; return 22; }
|
||
|
|
trap "echo TERM;false;g" term
|
||
|
|
f() {
|
||
|
|
(kill $$) &
|
||
|
|
sleep 1
|
||
|
|
}
|
||
|
|
f
|
||
|
|
echo Zero:$?
|