安装enca
apt-get install enca
查询单个文件的编码
enca index.html
转换单个文件的编码
enca -L none -x utf-8 index.html
转换批量文件的编码
find ./ -type f -name "*.htm*" | cat $1 | sort | grep -v svn > files.list
vim enca_list.sh
插入以下代码:
#!/bin/sh
cat $1 | while read LINE
do
echo $LINE
#enca $LINE
enca -x utf-8 $LINE
#enca $LINE
done
保存退出后
chmod +x enca_list.sh
执行脚本: ./enca_list.sh files.list
阅读(1348) | 评论(0) | 转发(0) |