aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var_wordsplit_ifs1.right
blob: cf583d0aa79f64d1e0f050f6b42b7fdf82e1f9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Testing: !IFS $*
.abc.
.d.
.e.
Testing: !IFS $@
.abc.
.d.
.e.
Testing: !IFS "$*"
.abc d e.
Testing: !IFS "$@"
.abc.
.d e.
Testing: IFS="" $*
.abc.
.d e.
Testing: IFS="" $@
.abc.
.d e.
Testing: IFS="" "$*"
.abcd e.
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