brotli: update page (#10102)

Co-authored-by: pixel <pixel+github@chrissx.de>
pull/23/head
K.B.Dharun Krishna 2023-04-23 16:57:16 +05:30 committed by GitHub
parent 50a4cedd22
commit 7aeaf9ccb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -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}}`