data/method/busybox/busybox-1.36.0/testsuite/paste/paste-back-cuted-lines

10 lines
191 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
cat > foo <<EOF
this is the first line
this is the second line
this is the third line
EOF
cut -b 1-13 -n foo > foo1
cut -b 14- -n foo > foo2
busybox paste -d '\0' foo1 foo2 > bar
cmp foo bar