aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-redir/redirA.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-redir/redirA.tests')
-rwxr-xr-xshell/ash_test/ash-redir/redirA.tests11
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/ash_test/ash-redir/redirA.tests b/shell/ash_test/ash-redir/redirA.tests
new file mode 100755
index 000000000..56833f938
--- /dev/null
+++ b/shell/ash_test/ash-redir/redirA.tests
@@ -0,0 +1,11 @@
+x="tmp11:tmp22"
+
+# Bug was incorrectly expanding variables in >redir
+echo "${x%:*}" >"${x%:*}"
+echo tmp1*
+rm tmp1*
+
+# Also try unquoted
+echo "${x%:*}" >${x%:*}
+echo tmp1*
+rm tmp1*