gzcat
gzcat is a command-line utility that outputs the uncompressed contents of a gzip-compressed file to standard output. It is part of the gzip software package and is commonly used as a convenience alias for commands that decompress to stdout, such as zcat or gunzip -c.
On many Unix-like systems, gzcat exists as a separate executable or as a symbolic link to zcat
Usage: gzcat file.gz. The command can be piped to other programs, for example gzcat file.gz | less,
Relation to other tools: zcat is the POSIX name for printing compressed files to stdout. gunzip -c
See also: zcat, gunzip, gzip. History: The gzip project was developed by Jean-loup Gailly and Mark Adler;