busybox/shell/hush_test/hush-parsing/escape3.right
Denis Vlasenko ab876cd107 hush: add testsuite for "no globbing in redirection" rule.
simplify redirection habdling
2008-06-18 16:29:32 +00:00

24 lines
161 B
Plaintext

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