标签:编码
一直以来centos 下 文件转码都用的是iconv这个命令,最近发现了个enca,比iconv好用多了。
iconv示例:
iconv -f encoding -t encoding inputfile -o outfile
-f 需要转码文件的原编码
-t 需要转为的编码
-o 输出的文件
iconv 弊端,需要知道源文件的原始编码才行。
enca:
yum -y install enca #依赖epel源
查看当前文件编码:
# enca -L zh_CN host0740960_2017-03-01_1488361501_zhengju.txt
Simplified Chinese National Standard; GB2312
编码转换:
enca -L 当前语言 -x 目标编码 文件名
# enca -L zh_CN -x gb2312 host0740960_2017-03-01_1488361501_zhengju.txt
支持批量转换:
# enca -L zh_CN -x *
本文出自 “任我行” 博客,请务必保留此出处http://duoming911.blog.51cto.com/603150/1916675
标签:编码
原文地址:http://duoming911.blog.51cto.com/603150/1916675