commit bash-20060112 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 22:43:58 -05:00
parent 20587658e9
commit 11a6f9a95f
40 changed files with 11605 additions and 629 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
+2
View File
@@ -30,3 +30,5 @@ argv[1] = <hello, $"world">
argv[1] = <hello, \$"world">
argv[1] = <hello, $"world">
argv[1] = <hello, $world>
argv[1] = <^I>
argv[1] = <'A^IB'>
+9
View File
@@ -100,3 +100,12 @@ recho $'hello, \$"world"'
recho $'hello, $\"world"'
recho "hello, $"world""
# ansi quoting inside double-quoted command subst - bash-3.1 bug
function args
{
for a in "$@";do echo "'$a'";done
}
unset mytab
recho "${mytab:-$'\t'}"
recho "$( args $'A\tB' )"