Last active
December 3, 2019 11:50
-
-
Save CFM880/091398d17ec66818483cc3457ad7f095 to your computer and use it in GitHub Desktop.
批量GB2312转UTF-8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function gbk2utf(){ | |
file="$1" | |
echo "处理文件 '$file' ..." | |
iconv -f gb2312 -t UTF-8 -c "$file" > tmp | |
mv -f tmp "$file" | |
} | |
function getdir(){ | |
for element in `ls $1` | |
do | |
dir_or_file=$1"/"$element | |
echo $dir_or_file | |
if [ -d $dir_or_file ] | |
then | |
getdir $dir_or_file | |
else | |
gbk2utf $dir_or_file | |
fi | |
done | |
} | |
getdir $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment