blob: a8171bf1e4c28d3da8b1a12875a68ef91f9e233a [file] [log] [blame]
Maxime Costed2383f52017-03-23 17:35:20 +01001cat > foo <<EOF
2this is the first line
3this is the second line
4this is the third line
5EOF
6cut -b 1-13 -n foo > foo1
7cut -b 14- -n foo > foo2
8busybox paste -d '\0' foo1 foo2 > bar
9cmp foo bar