1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:13:52 +02:00

gunzip: add page (#909)

This commit is contained in:
Agniva De Sarker 2016-06-21 04:30:19 +05:30 committed by Waldir Pimenta
parent 6df2cd06d2
commit 7f168f6144

15
pages/common/gunzip.md Normal file
View file

@ -0,0 +1,15 @@
# gunzip
> Extract file(s) from a gzip (.gz) archive.
- Extract a file from the archive replacing the original file:
`gunzip {{archive.tar.gz}}`
- Extract file to a target destination:
`gunzip -c {{archive.tar.gz}} > {{archive.tar}}`
- List of contents of the compressed file:
`gunzip -l {{file.txt.gz}}`