aboutsummaryrefslogtreecommitdiff
path: root/testsuite/paste/paste-pairs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/paste/paste-pairs')
-rw-r--r--testsuite/paste/paste-pairs16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/paste/paste-pairs b/testsuite/paste/paste-pairs
new file mode 100644
index 000000000..90725fa87
--- /dev/null
+++ b/testsuite/paste/paste-pairs
@@ -0,0 +1,16 @@
+cat > foo <<EOF
+foo1
+bar1
+foo2
+bar2
+foo3
+EOF
+
+cat > bar <<EOF
+foo1 bar1
+foo2 bar2
+foo3
+EOF
+
+busybox paste -s -d "\t\n" foo > baz
+cmp bar baz