vote up 5 vote down star
1

If I open files I created in windows, the lines all end with ^M.
How do I delete them all in once?

flag

11 Answers

vote up 23 vote down check

dos2unix is a commandline utility that will do this, or

:%s/^M//g

will if you use ctrl-v ctrl-m to input the ^M. Or you can:

:set ff=unix

and vim will do it for you. Docs on the 'fileformat' setting are here, and the vim wiki has a comprehensive page on line ending conversions.

Alternately, if you move files back and forth a lot, you might not want to convert them, but rather to do

:set ff=dos

so vim will know it's a DOS file and use DOS conventions for line endings.

link|flag
vote up 1 vote down

Usually there is a dos2unix command you can use for this, just make sure you read the manual as the GNU and BSD versions differ on how they deal with the arguments.

# BSD version
dos2unix $FILENAME $FILENAME_OUT
mv $FILENAME_OUT $FILENAME

#GNU version
dos2unix $FILENAME

Alternatively, you can create your own dos2unix with any of the proposed answers here, for example:

function dos2unix(){
    [ "${!}" ] && [ -f "{$1}" ] || return 1;

    { echo ':set ff=unix';
      echo ':wq';
    } | vim "${1}";
}
link|flag
vote up 0 vote down

I typically use

:%s/\r/\r/g

which seems a little odd, but works because of the way that vim matches linefeeds. I also find it easier to remember :)

link|flag
vote up 3 vote down

Change the lineendings in the view:

:e ++ff=dos
:e ++ff=mac
:e ++ff=unix

This can also be used as saving operation (:w alone will not save using the lineendings you see on screen):

:w ++ff=dos
:w ++ff=mac
:w ++ff=unix

And you can use it from the command-line:

for file in $(ls *cpp)
do 
  vi +':w ++ff=unix' +':q' ${file}
done
link|flag
vote up 0 vote down

:set fileformat=unix to convert from dos to unix.

link|flag
vote up 2 vote down

I prefer to use the following command :

:set fileformat=unix

You can also use mac or dos to respectively convert your file to macintosh or MS-DOS/MS-Windows file convention. And it does nothing if the file is already in the correct format.

For more information, see the vim help :

:help fileformat
link|flag
vote up 0 vote down

from: http://vim.wikia.com/wiki/Change_end-of-line_format_for_dos-mac-unix

[Esc] :%s/\r$//

link|flag
vote up 0 vote down

With the following command:

:%s/^M$//g

Get the ^M to appear type Ctrl-V then Ctrl-M. Ctrl-V tells Vim to take the next character entered literally.

link|flag
vote up 0 vote down

You can use the following command:
:%s/^V^M//g
where the '^' means use "Ctrl" key.

link|flag
vote up 0 vote down
:g/cntl-vcntl-m/s///
link|flag
vote up 3 vote down

:%s/\r+//g

In Vim, that strips all carriage returns, and leaves only newlines.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.