文件批量转换成UTf-8

yum install -y enca

 

在文件夹根目录下面创建文件:iconv_shell.sh

里面填写下面的内容:

#!/bin/bash

for file in `find ./ -name '*.php'`; do

  echo "$file"

 # iconv -f gb2312 -t utf8 -o $file $file
  enca -L zh_CN -x UTF-8 $file
done

执行:

sh iconv_shell.sh

 

发表评论

电子邮件地址不会被公开。 必填项已用*标注