1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 10:22:10 +02:00
tldr/pages/common/gunzip.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
546 B
Markdown

# gunzip
> Extract files from a `gzip` (`.gz`) archive.
> More information: <https://manned.org/gunzip>.
- Extract a file from an archive, replacing the original file if it exists:
`gunzip {{archive.tar.gz}}`
- Extract a file to a target destination:
`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}`
- Extract a file and keep the archive file:
`gunzip --keep {{archive.tar.gz}}`
- List the contents of a compressed file:
`gunzip --list {{file.txt.gz}}`
- Decompress an archive from `stdin`:
`cat {{path/to/archive.gz}} | gunzip`