Skip to content

Instantly share code, notes, and snippets.

@CFM880
Last active December 3, 2019 11:50
Show Gist options
  • Save CFM880/091398d17ec66818483cc3457ad7f095 to your computer and use it in GitHub Desktop.
Save CFM880/091398d17ec66818483cc3457ad7f095 to your computer and use it in GitHub Desktop.
批量GB2312转UTF-8
#!/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