busybox/shell/hush_test/hush-misc/exitcode_trap7.tests

8 lines
92 B
Plaintext
Raw Normal View History

$THIS_SH -c '
cleanup() { set +e; false; }
set -e
trap cleanup EXIT
echo Start
'
echo Ok:$?