5 lines
97 B
Plaintext
5 lines
97 B
Plaintext
|
# make sure we do not corrupt $? across traps
|
||
|
trap "echo YEAH; false" USR1
|
||
|
kill -USR1 $$
|
||
|
echo $?
|