Files
tldr/pages.zh/common/zlib-flate.md
Jin e5305a1865 common/z*: add Chinese translation (#14773)
* common/z*: add Chinese translation

* Update zoxide.md

* Update zoxide.md
2024-12-03 22:52:45 -08:00

18 lines
547 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# zlib-flate
> 原始 zlib 压缩和解压缩程序。
> `qpdf` 的一部分。
> 更多信息:<https://manned.org/zlib-flate>.
- 压缩一个文件:
`zlib-flate -compress < {{路径/到/输入_文件}} > {{路径/到/压缩.zlib}}`
- 解压缩一个文件:
`zlib-flate -uncompress < {{路径/到/压缩.zlib}} > {{路径/到/输出_文件}}`
- 使用指定的压缩级别压缩文件。0=最快最差9=最慢(最佳):
`zlib-flate -compress={{压缩级别}} < {{路径/到/输入_文件}} > {{路径/到/压缩.zlib}}`