commit bash-20190223 snapshot

This commit is contained in:
Chet Ramey
2019-02-25 08:48:43 -05:00
parent 9e48f85654
commit 3eef85534f
8 changed files with 72 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
# 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}"}"