HOWTO: remove ^M characters at end of lines in vi/vim
Open the file with vim, then type:
:%s/^V^M//g
^V
(CONTROL-V) is used to escape control characters.
Open the file with vim, then type:
:%s/^V^M//g
^V
(CONTROL-V) is used to escape control characters.
Comments