mirror of https://github.com/Black-Gold/Learn
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.
28 lines
570 B
28 lines
570 B
# **zcat**
|
|
|
|
## 说明
|
|
|
|
**zcat命令** 用于不真正解压缩文件,就能显示压缩包中文件的内容的场合
|
|
|
|
## 选项
|
|
|
|
```markdow
|
|
-f, --force force; read compressed data even from a terminal
|
|
-l, --list 列出压缩文件内容
|
|
-q, --quiet 禁止所有warnings输出
|
|
-r, --recursive operate recursively on directories
|
|
-S, --suffix=SUF use suffix SUF on compressed files
|
|
-t, --test test compressed file integrity
|
|
-v, --verbose verbose mode
|
|
|
|
With no FILE, or when FILE is -, read standard input.
|
|
|
|
|
|
```
|
|
|
|
## 实例
|
|
|
|
```bash
|
|
|
|
```
|