1.查看文件编码使用file命令
file filename.txt
output: filename.txt UTF-8 Unicode text, with escape sequences
2.编码格式转换使用iconv命令
iiconv的命令格式如下:
iconv -f encoding -t encoding inputfile
比如将一个UTF-8 编码的文件转换成GBK编码
iconv -f UTF-8 -t GBK file1 -o file2
1.查看文件编码使用file命令
file filename.txt
output: filename.txt UTF-8 Unicode text, with escape sequences
2.编码格式转换使用iconv命令
iiconv的命令格式如下:
iconv -f encoding -t encoding inputfile
比如将一个UTF-8 编码的文件转换成GBK编码
iconv -f UTF-8 -t GBK file1 -o file2