From 698eacdb44072668ce1e82924256c5cfecd33f19 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Tue, 21 Jun 2016 08:09:40 +0100 Subject: [PATCH] minor tweaks to gunzip.md, for improved clarity (#919) --- 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 7baf793bc..94fa8b600 100644 --- a/pages/common/gunzip.md +++ b/pages/common/gunzip.md @@ -2,14 +2,14 @@ > Extract file(s) from a gzip (.gz) archive. -- Extract a file from the archive replacing the original file: +- Extract a file from an archive, replacing the original file if it exists: `gunzip {{archive.tar.gz}}` -- Extract file to a target destination: +- Extract a file to a target destination: `gunzip -c {{archive.tar.gz}} > {{archive.tar}}` -- List of contents of the compressed file: +- List the contents of a compressed file: `gunzip -l {{file.txt.gz}}`