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,28 @@
# 压缩
> 使用 Unix 的 `compress` 命令压缩文件。
> 更多信息:<https://manned.org/compress.1>。
- 压缩特定文件:
`compress {{path/to/file1 path/to/file2 ...}}`
- 压缩特定文件,忽略不存在的文件:
`compress -f {{path/to/file1 path/to/file2 ...}}`
- 指定最大压缩位数9-16 位):
`compress -b {{bits}}`
- 写入 `stdout`(不更改文件):
`compress -c {{path/to/file}}`
- 解压缩文件(功能类似于 `uncompress`
`compress -d {{path/to/file}}`
- 显示压缩百分比:
`compress -v {{path/to/file}}`