mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-06 10:12:38 +02:00
bash-5.0 distribution sources and documentation
This commit is contained in:
+3
-1
@@ -1,9 +1,11 @@
|
||||
: ${TMPDIR:=/var/tmp}
|
||||
TMPFILE=$TMPDIR/exitcode
|
||||
trap 'rm -f $TMPFILE' 0
|
||||
|
||||
rm -f $TMPFILE
|
||||
set -e
|
||||
exit_handler() { echo "exit code: $?" ; touch $TMPFILE; }
|
||||
# we normalize the exit code to accommodate false returning 255 on Solaris
|
||||
exit_handler() { echo "exit code: $(( $? != 0 ))" ; touch $TMPFILE; }
|
||||
false() { ! :; }
|
||||
notfound() { nosuchcommand ; }
|
||||
syntaxerror() { !:; }
|
||||
|
||||
Reference in New Issue
Block a user