]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/dollar-star.sh
Imported from ../bash-2.01.1.tar.gz.
[thirdparty/bash.git] / tests / dollar-star.sh
CommitLineData
726f6388 1recho "$*"
d166f048
JA
2
3# If IFS is null, the parameters are joined without separators
4IFS=''
5recho "$*"
6
7# If IFS is unset, the parameters are separated by spaces
8unset IFS
9recho "${*}"