From e7a44c36735d11f6e1358851c4fb808521cf5c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Henrique?= <87824454+vitorhcl@users.noreply.github.com> Date: Wed, 5 Jun 2024 12:34:33 -0300 Subject: [PATCH] gzip: split unrelated options into multiple placeholders (#12897) --- pages/common/gzip.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/gzip.md b/pages/common/gzip.md index a4da2a1bc5..aabe2b9291 100644 --- a/pages/common/gzip.md +++ b/pages/common/gzip.md @@ -21,12 +21,12 @@ - Decompress a `gzip` archive specifying the output filename: -`gzip {{-c|--stdout -d|--decompress path/to/file.gz}} > {{path/to/uncompressed_file}}` +`gzip {{-c|--stdout}} {{-d|--decompress}} {{path/to/file.gz}} > {{path/to/uncompressed_file}}` - Specify the compression level. 1 is the fastest (low compression), 9 is the slowest (high compression), 6 is the default: -`gzip -{{1..9 -c|--stdout path/to/file}} > {{path/to/compressed_file.gz}}` +`gzip -{{1..9}} {{-c|--stdout}} {{path/to/file}} > {{path/to/compressed_file.gz}}` - Display the name and reduction percentage for each file compressed or decompressed: -`gzip {{-v|--verbose -d|--decompress path/to/file.gz}}` +`gzip {{-v|--verbose}} {{-d|--decompress}} {{path/to/file.gz}}`