2021-08-15 19:59:09 +02:00
|
|
|
# brotli
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
> Compress/uncompress files with Brotli compression.
|
2025-03-28 05:26:23 +02:00
|
|
|
> 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:
|
|
|
|
|
2023-04-23 16:57:16 +05:30
|
|
|
`brotli {{path/to/file}}`
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
- Decompress a file, creating an uncompressed version next to the file:
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
`brotli {{[-d|--decompress]}} {{path/to/file.br}}`
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
- Compress a file specifying the output filename:
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
`brotli {{path/to/file}} {{[-o|--output]}} {{path/to/compressed_output_file.br}}`
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
- Decompress a Brotli file specifying the output filename:
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
`brotli {{[-d|--decompress]}} {{path/to/compressed_file.br}} {{[-o|--output]}} {{path/to/output_file}}`
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2024-02-19 11:13:42 -03:00
|
|
|
- Specify the compression quality (1=fastest (worst), 11=slowest (best)):
|
2020-12-12 20:52:03 +01:00
|
|
|
|
2025-03-28 05:26:23 +02:00
|
|
|
`brotli {{[-q|--quality]}} {{11}} {{path/to/file}} {{[-o|--output]}} {{path/to/compressed_output_file.br}}`
|