minor tweaks to gunzip.md, for improved clarity (#919)

waldyrious/alt-syntax
Waldir Pimenta 2016-06-21 08:09:40 +01:00 committed by GitHub
parent 2e95ede479
commit 698eacdb44
1 changed files with 3 additions and 3 deletions

View File

@ -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}}`