mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-07 10:42:28 +02:00
commit bash-20060112 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
|
||||
|
||||
|
||||
@@ -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'>
|
||||
|
||||
@@ -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' )"
|
||||
|
||||
Reference in New Issue
Block a user