mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-06 11:50:49 +02:00
10 lines
175 B
Bash
Executable File
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 "${*}"
|