1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/gunzip.md

17 lines
375 B
Markdown
Raw Normal View History

2016-06-21 04:30:19 +05:30
# gunzip
> Extract file(s) from a gzip (.gz) archive.
2021-04-17 17:15:37 +02:00
> More information: <https://manned.org/gunzip>.
2016-06-21 04:30:19 +05:30
- Extract a file from an archive, replacing the original file if it exists:
2016-06-21 04:30:19 +05:30
`gunzip {{archive.tar.gz}}`
- Extract a file to a target destination:
2016-06-21 04:30:19 +05:30
`gunzip -c {{archive.tar.gz}} > {{archive.tar}}`
- List the contents of a compressed file:
2016-06-21 04:30:19 +05:30
`gunzip -l {{file.txt.gz}}`