mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
6 lines
106 B
Plaintext
6 lines
106 B
Plaintext
# make sure an exit command in an exit trap sets the shell's exit status
|
|
trap - 0
|
|
trap 'exit 5' 0
|
|
|
|
exit 0
|