tldr/pages/common/gunzip.md

16 lines
326 B
Markdown
Raw Normal View History

2016-06-21 00:00:19 +01:00
# gunzip
> Extract file(s) from a gzip (.gz) archive.
- Extract a file from an archive, replacing the original file if it exists:
2016-06-21 00:00:19 +01:00
`gunzip {{archive.tar.gz}}`
- Extract a file to a target destination:
2016-06-21 00:00:19 +01:00
`gunzip -c {{archive.tar.gz}} > {{archive.tar}}`
- List the contents of a compressed file:
2016-06-21 00:00:19 +01:00
`gunzip -l {{file.txt.gz}}`