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