欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在Linux下将整个目录的文件转换字符编码的脚本

程序员文章站 2022-07-14 12:11:43
...

源文件编码:gbk

源文件名称模式:*.ftl.gbk

目标文件编码:utf8

目标文件名称模式:*.ftl

 

脚本:to_utf8.sh

#!/bin/sh

for srcfile in *.gbk;
do
        dstfile=${srcfile/.gbk/}
        if [ "$srcfile" -nt "$dstfile" ]; then
                echo convert $srcfile to $dstfile ...
                iconv -f gbk -t utf8 $srcfile >$dstfile
        fi
done

 

执行示例:

 

当有新的文件或新的修改时

[root@s170 ws1_hndy_wapmoban]# ./to_utf8.sh
convert sitemap.ftl.gbk to sitemap.ftl ...
[root@s170 ws1_hndy_wapmoban]#

 

当没有修改时

[root@s170 ws1_hndy_wapmoban]# ./to_utf8.sh
[root@s170 ws1_hndy_wapmoban]#

 

本文链接:http://codingstandards.iteye.com/blog/1563470

 

 

相关标签: Linux