~mmach/netext73/busybox

« back to all changes in this revision

Viewing changes to shell/ash_test/ash-vars/var_wordsplit_ifs1.right

  • Committer: mmach
  • Date: 2021-04-14 13:54:24 UTC
  • Revision ID: netbit73@gmail.com-20210414135424-8x3fxf716zs4wflb
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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