summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-quoting/space_in_varexp1.tests
blob: 1589587d19536b1cd51d698133a92fb311dadf2a (plain)
1
2
3
4
5
6
a=b
a=${a:+$a }c
echo "1:'$a'"
a=b
a="${a:+$a }c"
echo "2:'$a'"