Back

干掉文件末尾的^M ( remove trailing ^M characters )

发布时间: 2014-08-07 10:47:00

refer to: http://stackoverflow.com/questions/811193/how-to-convert-the-m-linebreak-to-normal-linebreak-in-a-file-opened-in-vim

Within vim, look at the file format — DOS or Unix:

:set filetype=unix

:set fileformat=unix

The file will be written back without carriage return (CR, ^M) characters.

Back