美文网首页
将文件转为utf8编码

将文件转为utf8编码

作者: dhz120 | 来源:发表于2021-01-21 18:22 被阅读0次

    将当前目录下的所有hpp文件转换为utf8编码

    #!/bin/bash
    
    tmp_file="/tmp/a"
    
    for  file  in  `find . -type f -name "*.hpp"`; do
        enc=`file -i $file | cut -d"=" -f2`
        iconv  -f $enc -t "UTF-8" $file -o $tmp_file
        mv $tmp_file $file
        echo "convert " $file "from " $enc "to utf-8" 
    done
    exit 0
    
    

    相关文章

      网友评论

          本文标题:将文件转为utf8编码

          本文链接:https://www.haomeiwen.com/subject/pyudzktx.html