bc: fix for() to not leave data on stack
[oweals/busybox.git] / testsuite / paste / paste-back-cuted-lines
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