Fixed Format File

Hi to All,

Would you please help me.

I have a issue like in fixed format file there are 80 words should be there. but if file contains greater than 80 words then creates problem. so i have to trim file having more than 80 characters line through unix shell scripting. Please let me know how to do it.

Thanks in Advance.

Thanks,
Div_Neev

cut -c1-80 YOUR_FILENAME

It's working. Thanks a lot palsevlohit_123. :slight_smile: