aboutsummaryrefslogtreecommitdiff
path: root/testsuite/paste/paste-multi-stdin
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/paste/paste-multi-stdin')
-rw-r--r--testsuite/paste/paste-multi-stdin16
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 000000000..fee543058
--- /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