mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
zlib-flate: add page (#7839)
This commit is contained in:
parent
82ae522868
commit
c23e529ad2
1 changed files with 17 additions and 0 deletions
17
pages/common/zlib-flate.md
Normal file
17
pages/common/zlib-flate.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# zlib-flate
|
||||
|
||||
> Raw zlib compression and decompression program.
|
||||
> Part of `qpdf`.
|
||||
> More information: <https://manned.org/zlib-flate>.
|
||||
|
||||
- Compress a file:
|
||||
|
||||
`zlib-flate -compress < {{path/to/input_file}} > {{path/to/compressed.zlib}}`
|
||||
|
||||
- Uncompress a file:
|
||||
|
||||
`zlib-flate -uncompress < {{path/to/compressed.zlib}} > {{path/to/output_file}}`
|
||||
|
||||
- Compress a file with a specified compression level. 0=Fastest (Worst), 9=Slowest (Best):
|
||||
|
||||
`zlib-flate -compress={{compression_level}} < {{path/to/input_file}} > {{path/to/compressed.zlib}}`
|
Loading…
Add table
Reference in a new issue