add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# uncompress
> 解压使用 Unix `compress` 命令压缩的文件。
> 更多信息:<https://manned.org/uncompress.1>。
- 解压特定文件:
`uncompress {{path/to/file1.Z path/to/file2.Z ...}}`
- 解压特定文件,同时忽略不存在的文件:
`uncompress -f {{path/to/file1.Z path/to/file2.Z ...}}`
- 写入 `stdout`(不改变任何文件,也不创建 `.Z` 文件):
`uncompress -c {{path/to/file1.Z path/to/file2.Z ...}}`
- 详细模式(在 `stderr` 中写入关于百分比减少或扩展的信息):
`uncompress -v {{path/to/file1.Z path/to/file2.Z ...}}`