2016-06-21 00:00:19 +01:00
|
|
|
# gunzip
|
|
|
|
|
|
|
|
> Extract file(s) from a gzip (.gz) archive.
|
2021-04-17 16:15:37 +01:00
|
|
|
> More information: <https://manned.org/gunzip>.
|
2016-06-21 00:00:19 +01:00
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- 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}}`
|
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- Extract a file to a target destination:
|
2016-06-21 00:00:19 +01:00
|
|
|
|
|
|
|
`gunzip -c {{archive.tar.gz}} > {{archive.tar}}`
|
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- List the contents of a compressed file:
|
2016-06-21 00:00:19 +01:00
|
|
|
|
|
|
|
`gunzip -l {{file.txt.gz}}`
|