You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
3.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **unzip**
## 说明
**unzip命令** 用于解压缩由zip命令压缩的“.zip”压缩包
## 选项
```markdown
-c将解压缩的结果显示到屏幕上并对字符做适当的转换
-f更新现有的文件
-l显示压缩文件内所包含的文件
-p与-c参数类似会将解压缩的结果显示到屏幕上但不会执行任何的转换
-t检查压缩文件是否正确
-u与-f参数类似但是除了更新现有的文件外也会将压缩文件中的其他文件解压缩到目录中
-v执行时显示详细的信息
-z仅显示压缩文件的备注文字
-a对文本文件进行必要的字符转换
-b不要对文本文件进行字符转换
-C压缩文件中的文件名称区分大小写
-j不处理压缩文件中原有的目录路径
-L将压缩文件中的全部文件名改为小写
-M将输出结果送到more程序处理
-n解压缩时不要覆盖原有的文件
-o不必先询问用户unzip执行后覆盖原有的文件
-P<密码>使用zip的密码选项
-q执行时不显示任何信息
-s将文件名中的空白字符转换为底线字符
-V保留VMS的文件版本信息
-X解压缩时同时回存文件原来的UID/GID
-d<目录>:指定文件解压缩后所要存储的目录
-x<文件>:指定不要处理.zip压缩文件中的哪些文件
-Zunzip-Z等于执行zipinfo指令
Default action is to extract files in list, except those in xlist, to exdir;
file[.zip] may be a wildcard. -Z => ZipInfo mode ("unzip -Z" for usage).
-p extract files to pipe, no messages -l list files (short format)
-f freshen existing files, create none -t test compressed archive data
-u update files, create if necessary -z display archive comment only
-v list verbosely/show version info -T timestamp archive to latest
-x exclude files that follow (in xlist) -d extract files into exdir
modifiers:
-n never overwrite existing files -q quiet mode (-qq => quieter)
-o overwrite files WITHOUT prompting -a auto-convert any text files
-j junk paths (do not make directories) -aa treat ALL files as text
-U use escapes for all non-ASCII Unicode -UU ignore any Unicode fields
-C match filenames case-insensitively -L make (some) names lowercase
-X restore UID/GID info -V retain VMS version numbers
-K keep setuid/setgid/tacky permissions -M pipe through "more" pager
-O CHARSET specify a character encoding for DOS, Windows and OS/2 archives
-I CHARSET specify a character encoding for UNIX and other archives
See "unzip -hh" or unzip.txt for more help. Examples:
unzip data1 -x joe => extract all files except joe from zipfile data1.zip
unzip -p foo | more => send contents of foo.zip via pipe into program more
unzip -fo foo ReadMe => quietly replace existing ReadMe if archive file newe
```
## 实例
```bash
unzip test.zip # 将压缩文件text.zip在当前目录下解压缩
unzip -n test.zip -d /tmp # 将压缩文件text.zip在指定目录`/tmp`下解压缩如果已有相同的文件存在要求unzip命令不覆盖原先的文件
unzip -v test.zip # 查看压缩文件目录,但不解压
unzip -o test.zip -d tmp/ # 将压缩文件test.zip在指定目录`/tmp`下解压缩,如果已有相同的文件存在,覆盖原先的文件
```