diff options
Diffstat (limited to 'testsuite/paste/paste-multi-stdin')
-rw-r--r-- | testsuite/paste/paste-multi-stdin | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/paste/paste-multi-stdin b/testsuite/paste/paste-multi-stdin new file mode 100644 index 0000000..fee5430 --- /dev/null +++ b/testsuite/paste/paste-multi-stdin @@ -0,0 +1,16 @@ +cat > foo <<EOF +line1 +line2 +line3 +line4 +line5 +line6 +EOF + +cat > bar <<EOF +line1 line2 line3 +line4 line5 line6 +EOF + +busybox paste - - - < foo > baz +cmp bar baz |