Files
bash/tests/quote3.sub
T
2019-02-25 08:48:43 -05:00

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}"}"