9 lines
175 B
Bash
Executable file
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 "${*}"
|