Oct 22, 2001 #1 ramkii Programmer Oct 22, 2001 2 US Hello All, I have a file which has a single contiguous record of more than 5000 characters. I need to split this record into 94 characters per line. I am unable to use AWK as it has the limitation of 3000 bytes. Can anyone help ? Thanks. Ramki
Hello All, I have a file which has a single contiguous record of more than 5000 characters. I need to split this record into 94 characters per line. I am unable to use AWK as it has the limitation of 3000 bytes. Can anyone help ? Thanks. Ramki
Oct 22, 2001 1 #2 CaKiwi Programmer Apr 8, 2001 1,294 US use fold -94 file > newfile Hope this helps. CaKiwi Upvote 0 Downvote
Oct 22, 2001 Thread starter #3 ramkii Programmer Oct 22, 2001 2 US You nailed it !! Thanks a lot. -Ramki Upvote 0 Downvote