mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-22 13:27:58 +02:00
19 lines
238 B
Plaintext
19 lines
238 B
Plaintext
# new tests
|
|
x=4
|
|
sp=' '
|
|
|
|
# word
|
|
recho ${x}${sp}''
|
|
|
|
# unquoted
|
|
recho ${x+ab "$y"}
|
|
recho ${x+ab ''}
|
|
recho ${x+ab "$( : )"}
|
|
recho ${x+ab "${yy}"}
|
|
|
|
# quoted
|
|
recho "${x+ab ''}"
|
|
recho "${x+ab ""}"
|
|
recho "${x+ab '${yy}'}"
|
|
recho "${x+ab "${yy}"}"
|