20 lines
166 B
Plaintext
20 lines
166 B
Plaintext
|
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
|