# bzcat

解压缩指定的.bz2文件

## 补充说明

**bzcat命令** 解压缩指定的.bz2文件，并显示解压缩后的文件内容。保留原压缩文件，并且不生成解压缩后的文件。

### 语法

```
bzcat(参数)
```

### 参数

.bz2压缩文件：指定要显示内容的.bz2压缩文件。

### 实例

将`/tmp/man.config`以bzip2格式压缩：

```
bzip2 -z man.config
```

此时man.config会变成man.config.bz2

将上面的压缩文件内容读出来：

```
bzcat man.config.bz2
```

此时屏幕上会显示 man.config.bz2 解压缩之后的文件内容。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hezhiqiang.gitbook.io/linux/ming-ling/bzcat.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
