diff options
Diffstat (limited to 'shell/hush_test/hush-vars')
-rw-r--r-- | shell/hush_test/hush-vars/star.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-vars/star.tests | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/shell/hush_test/hush-vars/star.right b/shell/hush_test/hush-vars/star.right index b33b176..0ecc55b 100644 --- a/shell/hush_test/hush-vars/star.right +++ b/shell/hush_test/hush-vars/star.right @@ -3,3 +3,4 @@ .d. .e. .f. +.1 abc d e f. diff --git a/shell/hush_test/hush-vars/star.tests b/shell/hush_test/hush-vars/star.tests index 1914dde..5554c40 100755 --- a/shell/hush_test/hush-vars/star.tests +++ b/shell/hush_test/hush-vars/star.tests @@ -4,5 +4,5 @@ fi # 'd e f' should be split into 3 separate args: for a in $*; do echo ".$a."; done -# must produce .1 abc d e f. Currently does not -#for a in "$*"; do echo ".$a."; done +# must produce .1 abc d e f. +for a in "$*"; do echo ".$a."; done |