I have a file generated by a select statement and the resulting file has new lines at every 80th character.
I see the new lines in the file by tail,more ,cat,vim commands.
Althoug vim has a setting for folding files at a specific index ( and can be disabled as described in this post : Confusion about vim folding - how to disable? ) I suppose the file is generated this way in the first place.
So is there a setting which applies to whole OS and disable folding? Or is it only for vim?
EDIT:
I figured out that the new lines comes from the select statement, I added 'size line 300' at the top of the sql file. It solved the problem. Thanks for the replies.