https://blog.csdn.net/wanthelp/article/details/80383964
记录一下最常用的方法
一、解压当前文件
unzip hello.zip
hello.zip需要在当前目录下
解压出来的内容也会在当前目录下
二、解压到指定目录
unzip -d /home/hello hello.zip
hello.zip要在当前目录
解压出来的内容会在/home/hello目录下
三、检查zip包内容是否损坏
unzip -t hello.zip