diff options
author | Maxime Coste <mawww@kakoune.org> | 2017-03-23 17:35:20 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-03-23 17:35:52 +0100 |
commit | d2383f57cd1ede7c43c69953e101b89d920353f6 (patch) | |
tree | d4bea931c08cd6c428c1db006977766bc0f17e99 /testsuite/paste/paste-separate | |
parent | dba0dc1999bb1e8bfe64607e2a9385cda361fcb7 (diff) | |
download | busybox-w32-d2383f57cd1ede7c43c69953e101b89d920353f6.tar.gz busybox-w32-d2383f57cd1ede7c43c69953e101b89d920353f6.tar.bz2 busybox-w32-d2383f57cd1ede7c43c69953e101b89d920353f6.zip |
paste: new applet
function old new delta
paste_main - 493 +493
packed_usage 31019 31070 +51
applet_names 2569 2575 +6
applet_main 1484 1488 +4
------------------------------------------------------------------------------
(add/remove: 2/0 grow/shrink: 3/0 up/down: 554/0) Total: 554 bytes
Signed-off-by: Maxime Coste <mawww@kakoune.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | testsuite/paste/paste-separate | 19 |
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 @@ | |||
1 | cat > foo <<EOF | ||
2 | foo1 | ||
3 | foo2 | ||
4 | foo3 | ||
5 | EOF | ||
6 | |||
7 | cat > bar <<EOF | ||
8 | bar1 | ||
9 | bar2 | ||
10 | bar3 | ||
11 | EOF | ||
12 | |||
13 | cat > baz <<EOF | ||
14 | foo1 foo2 foo3 | ||
15 | bar1 bar2 bar3 | ||
16 | EOF | ||
17 | |||
18 | busybox paste -s foo bar > qux | ||
19 | cmp baz qux | ||