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 @@
1cat > foo <<EOF
2foo1
3foo2
4foo3
5EOF
6
7cat > bar <<EOF
8bar1
9bar2
10bar3
11EOF
12
13cat > baz <<EOF
14foo1 foo2 foo3
15bar1 bar2 bar3
16EOF
17
18busybox paste -s foo bar > qux
19cmp baz qux