pages*: add missing mnemonics (#12151)

* pages*: add missing mnemonics

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Vitor Henrique
2024-02-19 11:13:42 -03:00
committed by GitHub
parent 61304de923
commit 1ba7fb9460
26 changed files with 73 additions and 65 deletions

View File

@@ -7,18 +7,18 @@
`brotli {{path/to/file}}`
- Decompress a file, creating an uncompressed version next to the file:
- [d]ecompress a file, creating an uncompressed version next to the file:
`brotli -d {{path/to/file.br}}`
- Compress a file specifying the output filename:
- Compress a file specifying the [o]utput filename:
`brotli {{path/to/file}} -o {{path/to/compressed_output_file.br}}`
- Decompress a Brotli file specifying the output filename:
- [d]ecompress a Brotli file specifying the [o]utput filename:
`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 quality (1=fastest (worst), 11=slowest (best)):
`brotli -q {{11}} {{path/to/file}} -o {{path/to/compressed_output_file.br}}`