commit | ab876cd107fe6ca274f58bae3264396745d8e5f9 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Wed Jun 18 16:29:32 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Wed Jun 18 16:29:32 2008 +0000 |
tree | c94ecba9c7d10af007294333e9b4c80efe079cfb | |
parent | 985de15bf3f39b5e32e34cadaf6947708197f018 [diff] [blame] |
hush: add testsuite for "no globbing in redirection" rule. simplify redirection habdling
diff --git a/shell/hush_test/hush-parsing/escape3.right b/shell/hush_test/hush-parsing/escape3.right new file mode 100644 index 0000000..da02a97 --- /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