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.

43 lines
524 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.

uncompress
===
用来解压.Z文件
## 说明
**uncompress命令** 用来解压缩由compress命令压缩后产生的“.Z”压缩包。
### 语法
```
uncompress(选项)(参数)
```
```
-f不提示用户强制覆盖掉目标文件
-c将结果送到标准输出无文件被改变
-r递归的操作方式。
```
### 参数
文件:指定要压缩的“.Z”压缩包。
### 实例
先创建一个.Z压缩文件
```
compress FileName
```
解压:
```
uncompress FileName.Z
```