我习惯于使用vim来修改文件的行尾:
$ file file
file: ASCII text, with CRLF line terminators
$ vim file
:set ff=mac
:wq
$ file file
file: ASCII text, with CR line terminators
是否可以使用类似的过程来更改文件的unicode编码?我正在尝试以下操作,但不起作用:
$ file file.xml
file.xml: Unicode text, UTF-16, little-endian
$ vim file
:set encoding=utf-8
:wq
$ file file.xml
file.xml: Unicode text, UTF-16, little-endian
我看到有人说他可以“设置fileencoding = utf-8,然后更新并写入文件,然后它可以工作”,但我似乎丢失了一些东西,否则他感到困惑。我不知道他的意思是“然后更新”。