iconv_shell.sh 154 B

123456789
  1. #!/bin/bash
  2. for file in `find ./ -name '*.php'`; do
  3. echo "$file"
  4. # iconv -f gb2312 -t utf8 -o $file $file
  5. enca -L zh_CN -x UTF-8 $file
  6. done