aboutsummaryrefslogtreecommitdiff
path: root/testsuite/paste/paste-separate
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/paste/paste-separate')
-rw-r--r--testsuite/paste/paste-separate19
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/paste/paste-separate b/testsuite/paste/paste-separate
new file mode 100644
index 000000000..40793fb31
--- /dev/null
+++ b/testsuite/paste/paste-separate
@@ -0,0 +1,19 @@
+cat > foo <<EOF
+foo1
+foo2
+foo3
+EOF
+
+cat > bar <<EOF
+bar1
+bar2
+bar3
+EOF
+
+cat > baz <<EOF
+foo1 foo2 foo3
+bar1 bar2 bar3
+EOF
+
+busybox paste -s foo bar > qux
+cmp baz qux