美文网首页
Mac打开CVS中文乱码解决方法

Mac打开CVS中文乱码解决方法

作者: 南国青天 | 来源:发表于2021-06-28 17:58 被阅读0次

    1.用当Automator制作一个脚本

    image.png

    2.右键CVS文件选择

    image.png

    脚本

    for f in "$@"; do
    if [ -f "$f" ]; then       
    iconv -s -c -f UTF8 -t GBK "$f" > /tmp/iconv.utf8.gbk.tmp       
    mv /tmp/iconv.utf8.gbk.tmp "$f"  
    fi 
    done
    

    相关文章

      网友评论

          本文标题:Mac打开CVS中文乱码解决方法

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