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.

37 lines
833 B

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.

zcat
===
显示压缩包中文件的内容
## 补充说明
**zcat命令** 用于不真正解压缩文件,就能显示压缩包中文件的内容的场合。
### 语法
```
zcat(选项)(参数)
```
### 选项
```
-S指定gzip格式的压缩包的后缀。当后缀不是标准压缩包后缀时使用此选项
-c将文件内容写到标注输出
-d执行解压缩操作
-l显示压缩包中文件的列表
-L显示软件许可信息
-q禁用警告信息
-r在目录上执行递归操作
-t测试压缩文件的完整性
-V显示指令的版本信息
-l更快的压缩速度
-9更高的压缩比。
```
### 参数
文件:指定要显示其中文件内容的压缩包。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->