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
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- 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}}`
|
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- Extract a file to a target destination:
|
2016-06-21 04:30:19 +05:30
|
|
|
|
2021-07-20 00:13:07 +02:00
|
|
|
`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}`
|
|
|
|
|
|
|
|
- Extract a file and keep the archive file:
|
|
|
|
|
|
|
|
`gunzip --keep {{archive.tar.gz}}`
|
2016-06-21 04:30:19 +05:30
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- List the contents of a compressed file:
|
2016-06-21 04:30:19 +05:30
|
|
|
|
2021-07-20 00:13:07 +02:00
|
|
|
`gunzip --list {{file.txt.gz}}`
|
2022-12-12 22:52:18 +01:00
|
|
|
|
|
|
|
- Decompress an archive from `stdin`:
|
|
|
|
|
|
|
|
`cat {{path/to/archive.gz}} | gunzip`
|