解压命令unzip常用方法汇总:

1、把文件解压到当前目录下

1

​unzip pythontab.com.zip​

2、如果要把文件解压到指定的目录下,需要用到-d参数。

1

​unzip -d .​​​​/tmp/​​​​pythontab.com.zip​

3、解压的时候,有时候不想覆盖已经存在的文件,那么可以加上-n参数

1 2

​unzip -n pythontab.com.zip​​​​unzip -n -d .​​​​/tmp/​​​​pythontab.com.zip​

4、只看一下zip压缩包中包含哪些文件,不进行解压缩

1

​unzip -l pythontab.com.zip​

5、查看显示的文件列表还包含压缩比率

1

​unzip -​​​​v​​​​pythontab.com.zip​

6、检查zip文件是否损坏

1

​unzip -t pythontab.com.zip​

7、将压缩文件pythontab.com.zip在指定目录tmp下解压缩,如果已有相同的文件存在,要求unzip命令覆盖原先的文件

1

​unzip -o pythontab.com.zip -d .​​​​/tmp​