commit bash-20131213 snapshot

This commit is contained in:
Chet Ramey
2013-12-30 09:38:02 -05:00
parent 44b4dfee25
commit ff3257877e
15 changed files with 16953 additions and 6 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
+9
View File
@@ -0,0 +1,9 @@
BUILD_DIR=/usr/local/build/chet/bash/bash-current
THIS_SH=$BUILD_DIR/bash
PATH=$PATH:$BUILD_DIR
export THIS_SH PATH
rm -f /tmp/xx
/bin/sh "$@"
+1
View File
@@ -116,3 +116,4 @@ the -- 1
./nameref6.sub: line 40: 2: invalid variable name for name reference
./nameref6.sub: line 41: 2: invalid variable name for name reference
2 -- 0
bar
+1
View File
@@ -114,3 +114,4 @@ ${THIS_SH} ./nameref3.sub
${THIS_SH} ./nameref4.sub
${THIS_SH} ./nameref5.sub
${THIS_SH} ./nameref6.sub
${THIS_SH} ./nameref7.sub
+8
View File
@@ -0,0 +1,8 @@
fn ()
{
declare -n var=foo; var=bar
}
unset foo
fn
echo ${foo:-unset}