使用iconv批量改变文件编码的shell脚本
程序员文章站
2024-01-04 13:48:58
这篇文章主要介绍了编写shell脚本,使用iconv批量改变文件编码的脚本代码,需要的朋友可以参考下。
用法示例:
cd ~/workspace/xxxproj...
这篇文章主要介绍了编写shell脚本,使用iconv批量改变文件编码的脚本代码,需要的朋友可以参考下。
用法示例:
cd ~/workspace/xxxproject ~/iconv_shell.sh ./ *java
好了,直接上代码~~
#!/bin/bash if [ "$#" != "2" ]; then echo "usage: `basename $0` dir filter" exit fi dir=$1 filter=$2 echo $1 for file in `find $dir -name "$2"`; do echo "$file" iconv -f gbk -t utf8 -o $file $file done
这里还有些修改的余地,比如源和目标编码应该作为参数,我暂时没有这个需求,懒得写了。