From 7aeaf9ccb5315617a1d755225df2d924b39a0303 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sun, 23 Apr 2023 16:57:16 +0530 Subject: [PATCH] brotli: update page (#10102) Co-authored-by: pixel --- pages/common/brotli.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/common/brotli.md b/pages/common/brotli.md index 5bf484848..84b26e368 100644 --- a/pages/common/brotli.md +++ b/pages/common/brotli.md @@ -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}}`