From 9ef08e83e5691e34e16bc35206d47d3e0c5690d4 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 11 Jul 2025 00:44:50 +0300 Subject: [PATCH] gunzip: add option placeholders (#17192) --- pages/common/gunzip.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/gunzip.md b/pages/common/gunzip.md index 7d8304fb03..233ad8b8d3 100644 --- a/pages/common/gunzip.md +++ b/pages/common/gunzip.md @@ -9,15 +9,15 @@ - Extract a file to a target destination: -`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}` +`gunzip {{[-c|--stdout]}} {{archive.tar.gz}} > {{archive.tar}}` - Extract a file and keep the archive file: -`gunzip --keep {{archive.tar.gz}}` +`gunzip {{[-k|--keep]}} {{archive.tar.gz}}` - List the contents of a compressed file: -`gunzip --list {{file.txt.gz}}` +`gunzip {{[-l|--list]}} {{file.txt.gz}}` - Decompress an archive from `stdin`: