mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-30 00:49:57 +02:00
commit bash-20150626 snapshot
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
|
||||
@@ -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 ) )
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user