aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-parsing/escape3.right
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-18 16:29:32 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-18 16:29:32 +0000
commitab876cd107fe6ca274f58bae3264396745d8e5f9 (patch)
treec94ecba9c7d10af007294333e9b4c80efe079cfb /shell/hush_test/hush-parsing/escape3.right
parent985de15bf3f39b5e32e34cadaf6947708197f018 (diff)
downloadbusybox-ab876cd107fe6ca274f58bae3264396745d8e5f9.tar.gz
hush: add testsuite for "no globbing in redirection" rule.
simplify redirection habdling
Diffstat (limited to 'shell/hush_test/hush-parsing/escape3.right')
-rw-r--r--shell/hush_test/hush-parsing/escape3.right23
1 files changed, 23 insertions, 0 deletions
diff --git a/shell/hush_test/hush-parsing/escape3.right b/shell/hush_test/hush-parsing/escape3.right
new file mode 100644
index 000000000..da02a976a
--- /dev/null
+++ b/shell/hush_test/hush-parsing/escape3.right
@@ -0,0 +1,23 @@
+v: a \ b \\ c \\\ d \\\\ e
+v: a \ b \\ c \\\ d \\\\ e
+Unquoted:
+.a.
+.\.
+.b.
+.\\.
+.c.
+.\\\.
+.d.
+.\\\\.
+.e.
+Quoted:
+.a.
+.\.
+.b.
+.\\.
+.c.
+.\\\.
+.d.
+.\\\\.
+.e.
+done