1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 16:35:24 +02:00
tldr/pages/common/brotli.md

25 lines
815 B
Markdown
Raw Normal View History

# brotli
2020-12-12 20:52:03 +01:00
> Compress/uncompress files with Brotli compression.
> More information: <https://manned.org/brotli>.
2020-12-12 20:52:03 +01:00
- Compress a file, creating a compressed version next to the file:
`brotli {{path/to/file}}`
2020-12-12 20:52:03 +01:00
- Decompress a file, creating an uncompressed version next to the file:
2020-12-12 20:52:03 +01:00
`brotli {{[-d|--decompress]}} {{path/to/file.br}}`
2020-12-12 20:52:03 +01:00
- Compress a file specifying the output filename:
2020-12-12 20:52:03 +01:00
`brotli {{path/to/file}} {{[-o|--output]}} {{path/to/compressed_output_file.br}}`
2020-12-12 20:52:03 +01:00
- Decompress a Brotli file specifying the output filename:
2020-12-12 20:52:03 +01:00
`brotli {{[-d|--decompress]}} {{path/to/compressed_file.br}} {{[-o|--output]}} {{path/to/output_file}}`
2020-12-12 20:52:03 +01:00
- Specify the compression quality (1=fastest (worst), 11=slowest (best)):
2020-12-12 20:52:03 +01:00
`brotli {{[-q|--quality]}} {{11}} {{path/to/file}} {{[-o|--output]}} {{path/to/compressed_output_file.br}}`