linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

38
Linux/command/bzcat.md Normal file
View File

@@ -0,0 +1,38 @@
bzcat
===
解压缩指定的.bz2文件
## 补充说明
**bzcat命令** 解压缩指定的.bz2文件并显示解压缩后的文件内容。保留原压缩文件并且不生成解压缩后的文件。
### 语法
```shell
bzcat(参数)
```
### 参数
.bz2压缩文件指定要显示内容的.bz2压缩文件。
### 实例
`/tmp/man.config`以bzip2格式压缩
```shell
bzip2 -z man.config
```
此时man.config会变成man.config.bz2
将上面的压缩文件内容读出来:
```shell
bzcat man.config.bz2
```
此时屏幕上会显示 man.config.bz2 解压缩之后的文件内容。