Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-16 00:22:14 +00:00
parent 27996b553a
commit 0881b6bcab
25 changed files with 121 additions and 71 deletions

View File

@@ -5,25 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
---
# gunzip
> Extract files from a `gzip` (`.gz`) archive.
> More information: <https://manned.org/gunzip>.
> This command is an alias of `gzip --decompress`.
- Extract a file from an archive, replacing the original file if it exists:
- View documentation for the original command:
`gunzip {{archive.tar.gz}}`
- Extract a file to a target destination:
`gunzip {{[-c|--stdout]}} {{archive.tar.gz}} > {{archive.tar}}`
- Extract a file and keep the archive file:
`gunzip {{[-k|--keep]}} {{archive.tar.gz}}`
- List the contents of a compressed file:
`gunzip {{[-l|--list]}} {{file.txt.gz}}`
- Decompress an archive from `stdin`:
`cat {{path/to/archive.gz}} | gunzip`
`tldr gzip`