# uncompress

用来解压.Z文件

## 补充说明

**uncompress命令** 用来解压缩由compress命令压缩后产生的“.Z”压缩包。

### 语法

```
uncompress(选项)(参数)
```

### 选项

```
-f：不提示用户，强制覆盖掉目标文件；
-c：将结果送到标准输出，无文件被改变；
-r：递归的操作方式。
```

### 参数

文件：指定要压缩的“.Z”压缩包。

### 实例

先创建一个.Z压缩文件

```
compress FileName
```

解压：

```
uncompress FileName.Z
```


---

# 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/uncompress.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.
