mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-08 23:54:01 +02:00
brotli: update page (#10102)
Co-authored-by: pixel <pixel+github@chrissx.de>
This commit is contained in:
parent
50a4cedd22
commit
7aeaf9ccb5
1 changed files with 6 additions and 6 deletions
|
@ -5,20 +5,20 @@
|
|||
|
||||
- Compress a file, creating a compressed version next to the file:
|
||||
|
||||
`brotli {{file.ext}}`
|
||||
`brotli {{path/to/file}}`
|
||||
|
||||
- Decompress a file, creating an uncompressed version next to the file:
|
||||
|
||||
`brotli -d {{file.ext}}.br`
|
||||
`brotli -d {{path/to/file.br}}`
|
||||
|
||||
- Compress a file specifying the output filename:
|
||||
|
||||
`brotli {{file.ext}} -o {{compressed_file.ext.br}}`
|
||||
`brotli {{path/to/file}} -o {{path/to/compressed_output_file.br}}`
|
||||
|
||||
- Decompress a Brotli file specifying the output filename:
|
||||
|
||||
`brotli -d {{compressed_file.ext.br}} -o {{file.ext}}`
|
||||
`brotli -d {{path/to/compressed_file.br}} -o {{path/to/output_file}}`
|
||||
|
||||
- Specify the compression level. 1=Fastest (Worst), 11=Slowest (Best):
|
||||
- Specify the compression level [1=Fastest (Worst), 11=Slowest (Best)]:
|
||||
|
||||
`brotli -q {{11}} {{file.ext}} -o {{compressed_file.ext.br}}`
|
||||
`brotli -q {{11}} {{path/to/file}} -o {{path/to/compressed_output_file.br}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue