【error】unzip解压中文压缩包出现乱码

运行命令:unzip '*.zip'(为了解压目录下全部文件)

出现问题:unzip解压中文安装包出现乱码

问题原因:在window下创建的中文文件默认gbk编码,而MAC则是utf-8编码。

解决方式:unzip -O GBK xxx.zip

参考博客:https://blog.csdn.net/gatieme/article/details/44807105

 

unzip的参数 -n 不覆盖 -o 直接覆盖

推荐博客:https://blog.csdn.net/weixin_36995644/article/details/81773249

你可能感兴趣的:(【error】unzip解压中文压缩包出现乱码)