方法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