diff options
Diffstat (limited to 'shell/ash_test/ash-parsing/bkslash_newline1.tests')
-rwxr-xr-x | shell/ash_test/ash-parsing/bkslash_newline1.tests | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/ash_test/ash-parsing/bkslash_newline1.tests b/shell/ash_test/ash-parsing/bkslash_newline1.tests new file mode 100755 index 0000000..6e374c4 --- /dev/null +++ b/shell/ash_test/ash-parsing/bkslash_newline1.tests @@ -0,0 +1,8 @@ +echo and1 &\ +& echo and2 + +echo or1 |\ +| echo NOT SHOWN + +case w in a) echo SKIP;\ +; w) echo ok;; esac; |