commit bash-20161206 snapshot

This commit is contained in:
Chet Ramey
2016-12-08 13:04:34 -05:00
parent 731e5676a2
commit 99210c299b
34 changed files with 161 additions and 111 deletions
+3 -3
View File
@@ -59,10 +59,10 @@ echo $?
echo $?
# kill two birds with one test -- test out the BASH_ENV code
echo echo this is bashenv > /tmp/bashenv
export BASH_ENV=/tmp/bashenv
echo echo this is bashenv > $TMPDIR/bashenv
export BASH_ENV=$TMPDIR/bashenv
${THIS_SH} ./exec3.sub
rm -f /tmp/bashenv
rm -f $TMPDIR/bashenv
unset BASH_ENV
# we're resetting the $PATH to empty, so this should be last