1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/zcat.md

13 lines
319 B
Markdown
Raw Normal View History

2016-01-16 01:48:34 -08:00
# zcat
> Print data from `gzip` compressed files.
> More information: <https://www.gnu.org/software/gzip/manual/gzip.html>.
2016-01-16 01:48:34 -08:00
- Print the uncompressed contents of a `gzip` archive to `stdout`:
2016-01-16 01:48:34 -08:00
`zcat {{file.txt.gz}}`
2019-03-06 12:33:35 +01:00
- Print compression details of a `gzip` archive to `stdout`:
2019-03-06 12:33:35 +01:00
`zcat {{[-l|--list]}} {{file.txt.gz}}`