quote
These functions wrap a string in double quotes (quote
) or single quotes
(squote
).
cat
The cat
function concatenates multiple strings together into one, separating
them with spaces:
cat "hello" "beautiful" "world"
The above produces hello beautiful world