26 lines
256 B
Plaintext
26 lines
256 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.
|
||
|
Finished
|