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