I have a file with many data lines, any line can have any number of char.
I need to concatenate lines so that every line is EXACTLY 80 chars long and then put a ^M at the end of each line.
ie:
Have:
Chars.
1 2 3 4 5
12345678901234567890123456789012345678901234567890123456789
6 7 8
012345678901234567890
1111 22222 3333333 44444444 555555 666666
444 444 4444 444 4444 4444 44444 4444 44444 4444 444
5555 5555 555555 55555 55555 55555 55
6666666 6666666 666666666 6666666 66666666 66 6666666 66666
Need:
1111 22222 3333333 44444444 555555 666666 444 444 4444 444 4444 4444 44444 4444<---- This is 80th chr.
44444 4444 4445555 5555 555555 55555 55555 55555 556666666 6666666 666666666 66<---- This is 80th chr.
66666 66666666 66 6666666 66666
Thanks
Brandt
PMP
I need to concatenate lines so that every line is EXACTLY 80 chars long and then put a ^M at the end of each line.
ie:
Have:
Chars.
1 2 3 4 5
12345678901234567890123456789012345678901234567890123456789
6 7 8
012345678901234567890
1111 22222 3333333 44444444 555555 666666
444 444 4444 444 4444 4444 44444 4444 44444 4444 444
5555 5555 555555 55555 55555 55555 55
6666666 6666666 666666666 6666666 66666666 66 6666666 66666
Need:
1111 22222 3333333 44444444 555555 666666 444 444 4444 444 4444 4444 44444 4444<---- This is 80th chr.
44444 4444 4445555 5555 555555 55555 55555 55555 556666666 6666666 666666666 66<---- This is 80th chr.
66666 66666666 66 6666666 66666
Thanks
Brandt
PMP