^M
要移除。可以用 Vi 的 search and replace command:
:%s/search-word/replace-word/g
%s 命令是用 "/" 來區分,第一個 "/" 間隔是 search word,第二個 "/" 是 replace word。
尾巴的 "g" 是 Globally 的意思 (search and replace the whole document)
所以要 remove ^M 就要下:
:%s/^M//g
但是 控制字元 "^M" 在 vi 裡要分兩次input:
Control-V Control-M
這樣輸入完,就會看到 ^M
沒有留言:
張貼留言