If I open files I created in windows, the lines all end with ^M.
How do I delete them all in once?
|
1
|
|
|
|
|
|
dos2unix is a commandline utility that will do this, or
will if you use ctrl-v ctrl-m to input the ^M. Or you can:
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
so vim will know it's a DOS file and use DOS conventions for line endings. |
|||
|
|
|
|
:%s/\r+//g In Vim, that strips all carriage returns, and leaves only newlines. |
||
|
|
|
|
Change the lineendings in the view:
This can also be used as saving operation (:w alone will not save using the lineendings you see on screen):
And you can use it from the command-line:
|
||
|
|
|
|
I prefer to use the following command :
You can also use For more information, see the vim help :
|
||
|
|
|
|
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.
Alternatively, you can create your own dos2unix with any of the proposed answers here, for example:
|
||
|
|
|
|
|
||
|
|
|
|
You can use the following command: |
||
|
|
|
|
With the following command:
Get the |
||
|
|
|
|
from: http://vim.wikia.com/wiki/Change_end-of-line_format_for_dos-mac-unix [Esc] :%s/\r$// |
||
|
|
|
|
|
||
|
|
|
|
I typically use
which seems a little odd, but works because of the way that vim matches linefeeds. I also find it easier to remember :) |
||
|
|
