使用find, iconv, 批量转换文件到utf-8格式
Hujiuxiang
・1 分钟阅读
批量转换文件到utf-8
find . -name"*.php" -exec iconv -f ISO-8859-1 -t UTF-8 {} -o ../newdir_utf8/{} ;