码迷,mamicode.com
首页 > 其他好文 > 详细

unzip:unzip解压文件到指定目录

时间:2019-07-07 14:39:30      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:div   temp   要求   指定   zip   检查   zip压缩   覆盖   压缩包   

 

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

unzip test.zip

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

unzip -d /temp test.zip

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

unzip -n test.zip
unzip -n -d /temp test.zip

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

unzip -l test.zip

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

unzip -v test.zip

6、检查zip文件是否损坏

unzip -t test.zip

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

unzip -o test.zip -d /tmp/

 

unzip:unzip解压文件到指定目录

标签:div   temp   要求   指定   zip   检查   zip压缩   覆盖   压缩包   

原文地址:https://www.cnblogs.com/HHHAI/p/11146128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!