2011年5月20日
摘要: LINUX 转换文件编码 GBK->UTF-8文件编码批量转换脚本find default -type d -exec mkdir -p utf/{} \;find default -type f -exec iconv -f GBK -t UTF-8 {} -o utf/{} \;这两行命令将default目录下的文件由GBK编码转换为UTF-8编码,目录结构不变,转码后的文件保存在utf/de... 阅读全文
posted @ 2011-05-20 15:29 return null; 阅读(313) 评论(0) 推荐(0)