xref: /freebsd/bin/sh/tests/builtins/exit2.8 (revision 914752d0f7f874ab4fc8393aee28c22df87324f2)
1
2# exit without arguments is the same as exit $? outside a trap.
3
4trap 'true; true' 0
5(exit 8)
6exit
7