From 8058b46345c87bb549b58bbecfda9cf34baa89c6 Mon Sep 17 00:00:00 2001 From: Renie Siqueira Date: Fri, 8 Nov 2024 19:27:46 -0300 Subject: [PATCH] gzip: fix parameters formatting (#14731) gzip: parameters formatting fix --- 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 aabe2b929..6d76bd706 100644 --- a/pages/common/gzip.md +++ b/pages/common/gzip.md @@ -9,15 +9,15 @@ - Decompress a file, replacing it with the original uncompressed version: -`gzip {{-d|--decompress path/to/file.gz}}` +`gzip {{-d|--decompress}} {{path/to/file.gz}}` - Compress a file, keeping the original file: -`gzip {{-k|--keep path/to/file}}` +`gzip {{-k|--keep}} {{path/to/file}}` - Compress a file, specifying the output filename: -`gzip {{-c|--stdout path/to/file}} > {{path/to/compressed_file.gz}}` +`gzip {{-c|--stdout}} {{path/to/file}} > {{path/to/compressed_file.gz}}` - Decompress a `gzip` archive specifying the output filename: