commit bash-20090618 snapshot

This commit is contained in:
Chet Ramey
2011-12-08 20:11:17 -05:00
parent 4a8bb13f3c
commit 2c471a92e2
29 changed files with 1169 additions and 1119 deletions
+3 -1
View File
@@ -4,4 +4,6 @@ echo ${#@}
echo ${@:-bar}
echo $@
echo after
echo after 1
echo ${@}
echo after 2
+3 -1
View File
@@ -3,5 +3,7 @@ set -u
echo ${#*}
echo ${*:-bar}
echo $*
echo after 1
echo ${*}
echo after
echo after 2
+8 -2
View File
@@ -151,10 +151,16 @@ argv[3] = <arq>
argv[4] = <>
0
bar
./dollar-at3.sub: line 6: $@: unbound variable
after 1
after 2
0
bar
./dollar-star4.sub: line 6: *: unbound variable
after 1
after 2
a b
ab
cd