unzip命令用于解压缩zip格式文件,虽然Linux系统中更多的使用tar命令进行对压缩包的管理工作,但有时也会收到同Windows系统常用的.zip和.rar格式的压缩包文件,unzip格式便派上了用场。直接使用unzip命令解压缩文件后,压缩包内原有的文件会被提取并输出保存到当前工作目录下。
语法格式:unzip [参数] 压缩包
常用参数:
-l | 显示压缩文件内所包含的文件 |
-v | 执行时显示详细的信息 |
-c | 将解压缩的结果显示到屏幕上,并对字符做适当的转换 |
-n | 解压缩时不要覆盖原有的文件 |
-j | 不处理压缩文件中原有的目录路径 |
参考实例
将压缩包文件解压到当前工作目录中:
[root@linuxcool ~]# unzip latest.zip Archive: 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@linuxcool ~]# unzip latest.zip -d /home Archive: 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@linuxcool ~]# unzip -t latest.zip Archive: 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 ………………省略部分输出信息………………