1# "exit" in trap should not use last command's exitcode, 2# but exitcode on entering the trap. 3$THIS_SH -c ' 4 trap "false;exit" term 5 kill $$ & 6 (sleep 1; exit 42) 7' 8echo 42:$? 9