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