aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-vars/var_wordsplit_ifs1.right
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-vars/var_wordsplit_ifs1.right')
-rw-r--r--shell/ash_test/ash-vars/var_wordsplit_ifs1.right16
1 files changed, 16 insertions, 0 deletions
diff --git a/shell/ash_test/ash-vars/var_wordsplit_ifs1.right b/shell/ash_test/ash-vars/var_wordsplit_ifs1.right
index efdafc70f..cf583d0aa 100644
--- a/shell/ash_test/ash-vars/var_wordsplit_ifs1.right
+++ b/shell/ash_test/ash-vars/var_wordsplit_ifs1.right
@@ -22,4 +22,20 @@ Testing: IFS="" "$*"
Testing: IFS="" "$@"
.abc.
.d e.
+Testing: !IFS v=$*
+v='abc d e'
+Testing: !IFS v=$@
+v='abc d e'
+Testing: !IFS v="$*"
+v='abc d e'
+Testing: !IFS v="$@"
+v='abc d e'
+Testing: IFS="" v=$*
+v='abcd e'
+Testing: IFS="" v=$@
+v='abcd e'
+Testing: IFS="" v="$*"
+v='abcd e'
+Testing: IFS="" v="$@"
+v='abcd e'
Finished