tldr/pages/common/brotli.md

25 lines
721 B
Markdown
Raw Normal View History

# brotli
2020-12-12 19:52:03 +00:00
> Compress/uncompress files with Brotli compression.
2020-12-12 19:52:03 +00:00
> More information: <https://github.com/google/brotli>.
- Compress a file, creating a compressed version next to the file:
`brotli {{path/to/file}}`
2020-12-12 19:52:03 +00:00
- Decompress a file, creating an uncompressed version next to the file:
`brotli -d {{path/to/file.br}}`
2020-12-12 19:52:03 +00:00
- Compress a file specifying the output filename:
`brotli {{path/to/file}} -o {{path/to/compressed_output_file.br}}`
2020-12-12 19:52:03 +00:00
- Decompress a Brotli file specifying the output filename:
2020-12-12 19:52:03 +00:00
`brotli -d {{path/to/compressed_file.br}} -o {{path/to/output_file}}`
2020-12-12 19:52:03 +00:00
- Specify the compression level [1=Fastest (Worst), 11=Slowest (Best)]:
2020-12-12 19:52:03 +00:00
`brotli -q {{11}} {{path/to/file}} -o {{path/to/compressed_output_file.br}}`