phaqphaq

“a geeks daily life”

Removing CRLF Using Vi

Sometimes DOS files end up on unix systems without being converted. Files will then have those nasty ^M character at the line ending, which prevents some applications to work properly.

The reason for is is DOS to use CRLF (carriage return + line feed) for line endings while unix uses LF (line feed) only.

If only few files need to be changed, vi/vim is the tool of choice.

After opening up the file, enter command mode to run this macro:

:%s/^M$//g

To get the ^M do not actually enter it as is. Insert it by typing the CTRL-V CTRL-M sequence instead.

One Response to “Removing CRLF Using Vi”

  1. automotive floor jack Says:

    It’s the first time I commented here and I should say that you provide genuine, and quality information for bloggers! Great job.
    p.s. You have an awesome template . Where have you got it from?

Leave a Reply