summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-quoting/dollar_repl_bash2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-quoting/dollar_repl_bash2.tests')
-rwxr-xr-xshell/ash_test/ash-quoting/dollar_repl_bash2.tests8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/ash_test/ash-quoting/dollar_repl_bash2.tests b/shell/ash_test/ash-quoting/dollar_repl_bash2.tests
new file mode 100755
index 0000000..45c7a10
--- /dev/null
+++ b/shell/ash_test/ash-quoting/dollar_repl_bash2.tests
@@ -0,0 +1,8 @@
+v="x/x"
+# The second / is quoted, should not be treated as separator
+echo a${v/'/'}b
+# The second / is escaped, should not be treated as separator
+echo a${v/\/}b
+
+echo "a${v/'/'}b"
+echo "a${v/\/}b"