Zcat - Print Gzip Files | Online Free DevTools by Hexmos
Print gzip files easily with Zcat. Decompress and view the contents of compressed archives directly in your terminal. Free online tool, no registration required.
zcat
Print data from
gzipcompressed files tostdout. More information: https://www.gnu.org/software/gzip/manual/gzip.html.
- Print the uncompressed contents of a
gziparchive tostdout:
zcat {{path/to/file.txt.gz}}
- Print compression details of a
gziparchive tostdout:
zcat {{[-l|--list]}} {{path/to/file.txt.gz}}
- Test the integrity of a compressed file verbosely:
zcat {{[-v|--verbose]}} {{[-t|--test]}} {{path/to/file.txt.gz}}
- Suppress all warnings when decompressing a file:
zcat {{[-q|--quiet]}} {{path/to/file.txt.gz}}
- Avoid any system crashes when decompressing a file (slower output):
zcat --synchronous {{path/to/file.txt.gz}}