i-bash/tests/dollar-star.sh

10 lines
175 B
Bash
Raw Normal View History

1996-08-26 18:22:31 +00:00
recho "$*"
1997-06-05 14:59:13 +00:00
# If IFS is null, the parameters are joined without separators
IFS=''
recho "$*"
# If IFS is unset, the parameters are separated by spaces
unset IFS
recho "${*}"