unzip -- 提取ZIP压缩文件
unzip 命令概述:
unzip 命令用于提取 zip 压缩文件中的文件和目录。
格式:
unzip [选项] [压缩文件名] [文件名]
选项:
选项含义
-l 列出压缩文件的内容列表。
-v 用详细方式列出压缩文件的内容列表。
-q 静默处理,不显示指令执行过程。
-n 不覆盖已存在的文件。
-o 不提示用户,直接覆盖已存在的文件。
参数:
参数 含义
压缩文件名 指定要提取的 zip 压缩文件的名称。
文件名 指定要提取的文件或目录。
实例:
$ unzip example.zip# 提取 example.zip 中的所有文件和目录
Archive:example.zip
creating: example/
inflating: example/file1.txt
inflating: example/file2.txt
$ unzip -l example.zip# 列出 example.zip 中的内容
Archive:example.zip
Length Date Time Name
------------------- ----- ----
02023-10-22 10:22 example/
1232023-10-22 10:22 example/file1.txt
4562023-10-22 10:22 example/file2.txt
--------- -------
579 3 files
小甲鱼科普:
unzip 是在 Unix/Linux 系统中用来解压 zip 文件的工具。
它支持 zip 文件的各种压缩方式,并且可以处理通过 Unix 的 file permission 或者 DOS 的 attribute bits 来保护的文件。
unzip 在处理包含多个文件的 zip 文件时,会在当前目录下创建相应的文件和目录。
页:
[1]