hush: make getch/peek functions directly called
[oweals/busybox.git] / shell / hush_test / hush-vars / var_wordsplit_ifs1.right
1 Testing: !IFS $*
2 .abc.
3 .d.
4 .e.
5 Testing: !IFS $@
6 .abc.
7 .d.
8 .e.
9 Testing: !IFS "$*"
10 .abc d e.
11 Testing: !IFS "$@"
12 .abc.
13 .d e.
14 Testing: IFS="" $*
15 .abc.
16 .d e.
17 Testing: IFS="" $@
18 .abc.
19 .d e.
20 Testing: IFS="" "$*"
21 .abcd e.
22 Testing: IFS="" "$@"
23 .abc.
24 .d e.
25 Testing: !IFS v=$*
26 v='abc d e'
27 Testing: !IFS v=$@
28 v='abc d e'
29 Testing: !IFS v="$*"
30 v='abc d e'
31 Testing: !IFS v="$@"
32 v='abc d e'
33 Testing: IFS="" v=$*
34 v='abcd e'
35 Testing: IFS="" v=$@
36 v='abcd e'
37 Testing: IFS="" v="$*"
38 v='abcd e'
39 Testing: IFS="" v="$@"
40 v='abcd e'
41 Finished