1) 直接识别字符集,eg:
enca -L zh_CN test.cpp
Simplified Chinese National Standard; GB2312
2) 转换命令简单,eg:
enca -L zh_CN -x UTF-8 test.cpp or enca -L zh_CN -x GB2312 test.cpp
如果想改文件编码,直接将转换结果写回了test.cpp,不用指定输入文件再mv回去。
3) 支持批量输入:
enca -L zh_CN -x UTF-8 test.cpp test.h
网友评论