2016-06-21 00:00:19 +01:00
|
|
|
# gunzip
|
|
|
|
|
pages*: fix brand and technical names (#12145)
* pages*: fix Python, Java, pacman, apt, *zip*, xz, tar, git, RPM and grep names
* pages*: fix brand and technical names
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
* fluxctl, gitmoji, in-toto-run, osv-scanner: replace `git` with Git
* bzegrep: enclose egrep with backticks
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-bug: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-bug: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-force-clone: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* gitwatch: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* hub-init: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* pages.*: use Linux instead of GNU/Linux
---------
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-01-30 04:46:32 +00:00
|
|
|
> 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
|
|
|
|
2021-07-19 23:13:07 +01:00
|
|
|
`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}`
|
|
|
|
|
|
|
|
- Extract a file and keep the archive file:
|
|
|
|
|
|
|
|
`gunzip --keep {{archive.tar.gz}}`
|
2016-06-21 00:00:19 +01:00
|
|
|
|
2016-06-21 08:09:40 +01:00
|
|
|
- List the contents of a compressed file:
|
2016-06-21 00:00:19 +01:00
|
|
|
|
2021-07-19 23:13:07 +01:00
|
|
|
`gunzip --list {{file.txt.gz}}`
|
2022-12-12 21:52:18 +00:00
|
|
|
|
|
|
|
- Decompress an archive from `stdin`:
|
|
|
|
|
|
|
|
`cat {{path/to/archive.gz}} | gunzip`
|