Files
bash/tests/dollar-star.sh
T

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