处理ubuntu中解压zip文件时乱码的问题
2017-09-04 本文已影响9人
努力2009
方法1 :
- 首先安装7zip和convmv
sudo apt-get install p7zip-full convmv
- 假设zip文件名为open.zip
LANG=C 7z x open.zip
convmv -f cp936 -t utf8 -r --notest *
方法2
unzip -O CP936 filename.zip
sudo apt-get install p7zip-full convmv
LANG=C 7z x open.zip
convmv -f cp936 -t utf8 -r --notest *
unzip -O CP936 filename.zip