i-bash/tests/dollar-star.sh
2009-09-12 16:46:50 +00:00

9 lines
175 B
Bash
Executable file

recho "$*"
# 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 "${*}"