unzip命令 – 解压缩zip格式文件

unzip命令 – 解压缩zip格式文件

unzip命令用于解压缩zip格式文件,虽然Linux系统中更多的使用tar命令进行对压缩包的管理工作,但有时也会收到同Windows系统常用的.zip和.rar格式的压缩包文件,unzip格式便派上了用场。直接使用unzip命令解压缩文件后,压缩包内原有的文件会被提取并输出保存到当前工作目录下。

语法格式:unzip [参数] 压缩包

常用参数:

-l显示压缩文件内所包含的文件
-v执行时显示详细的信息
-c将解压缩的结果显示到屏幕上,并对字符做适当的转换
-n解压缩时不要覆盖原有的文件
-j不处理压缩文件中原有的目录路径

参考实例

将压缩包文件解压到当前工作目录中:

[root@ezdcc ~]# unzip latest.zipArchive:  latest.zip   creating: wordpress/  inflating: wordpress/xmlrpc.php      inflating: wordpress/wp-blog-header.php    inflating: wordpress/readme.html     inflating: wordpress/wp-signup.php    inflating: wordpress/index.php     ………………省略部分输出信息………………

将压缩包文件解压到指定的目录中:

[root@ezdcc ~]# unzip latest.zip -d /homeArchive:  latest.zip   creating: /home/wordpress/  inflating: /home/wordpress/xmlrpc.php    inflating: /home/wordpress/wp-blog-header.php    inflating: /home/wordpress/readme.html    inflating: /home/wordpress/wp-signup.php    inflating: /home/wordpress/index.php  ………………省略部分输出信息………………

测试压缩包文件是否完整,文件有无损坏:

[root@ezdcc ~]# unzip -t latest.zipArchive:  latest.zip    testing: wordpress/                     OK    testing: wordpress/xmlrpc.php           OK    testing: wordpress/wp-blog-header.php   OK    testing: wordpress/readme.html          OK    testing: wordpress/wp-signup.php        OK    testing: wordpress/index.php            OK………………省略部分输出信息………………

推荐阅读