~mmach/netext73/busybox

« back to all changes in this revision

Viewing changes to testsuite/paste/paste-back-cuted-lines

  • Committer: mmach
  • Date: 2021-04-14 13:54:24 UTC
  • Revision ID: netbit73@gmail.com-20210414135424-8x3fxf716zs4wflb
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
cat > foo <<EOF
 
2
this is the first line
 
3
this is the second line
 
4
this is the third line
 
5
EOF
 
6
cut -b 1-13 -n foo > foo1
 
7
cut -b 14- -n foo > foo2
 
8
busybox paste -d '\0' foo1 foo2 > bar
 
9
cmp foo bar