Has anyone got any idea how to remove blank lines from a text file saved on the server?
i.e. say any line which is less that 1 char in length delete?
Thanks, Adam.
You could use [man]file/man and delete elements that only contain newline sequences, and then write back.
Or you could use regex to change consecutive newline sequences to a single newline sequence.