mirror of https://github.com/mirror/busybox.git
42 lines
516 B
Plaintext
42 lines
516 B
Plaintext
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
|