summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-quoting/space_in_varexp1.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-quoting/space_in_varexp1.tests')
-rwxr-xr-xshell/hush_test/hush-quoting/space_in_varexp1.tests6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-quoting/space_in_varexp1.tests b/shell/hush_test/hush-quoting/space_in_varexp1.tests
new file mode 100755
index 0000000..1589587
--- /dev/null
+++ b/shell/hush_test/hush-quoting/space_in_varexp1.tests
@@ -0,0 +1,6 @@
+a=b
+a=${a:+$a }c
+echo "1:'$a'"
+a=b
+a="${a:+$a }c"
+echo "2:'$a'"