commit bash-20150626 snapshot

This commit is contained in:
Chet Ramey
2015-07-09 11:18:25 -04:00
parent 05d9462c4b
commit b47ecd026d
13 changed files with 106 additions and 1039 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
BUILD_DIR=/usr/local/build/chet/bash/bash-current
BUILD_DIR=/usr/local/build/bash/bash-current
THIS_SH=$BUILD_DIR/bash
PATH=$PATH:$BUILD_DIR
+10
View File
@@ -218,5 +218,15 @@ unset x
: $(case a in a) echo ;; # comment
esac)
# fixed after bash-4.3 released
testing=$(
echo test | while read line; do
case $line in
test) echo saw test ;;
*) echo other ;;
esac
done
)
# recommended to be parsed as a nested comsub instead of arithsub
echo $(( echo ab cde ) )
+3
View File
@@ -13,6 +13,7 @@ shopt -u compat32
shopt -u compat40
shopt -u compat41
shopt -u compat42
shopt -u compat43
shopt -s complete_fullquote
shopt -u direxpand
shopt -u dirspell
@@ -74,6 +75,7 @@ shopt -u compat32
shopt -u compat40
shopt -u compat41
shopt -u compat42
shopt -u compat43
shopt -u direxpand
shopt -u dirspell
shopt -u dotglob
@@ -110,6 +112,7 @@ compat32 off
compat40 off
compat41 off
compat42 off
compat43 off
direxpand off
dirspell off
dotglob off