Files
linux.softwareshinobi.com/landing/docs/commands/.recycle/122-the-zcat-command.md
Software Shinobi 611d0816cc
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
changed file names and directories
2025-06-19 08:36:13 -04:00

398 B

The zcat command

The zcat allows you to look at a compressed file.

Examples:

  1. To view the content of a compressed file:
~$ zcat test.txt.gz
Hello World
  1. It can also Works with multiple files:
~$ zcat test2.txt.gz test.txt.gz
hello
Hello world

Syntax:

The general syntax for the zcat command is as follows:

zcat [  -n ] [  -V ] [  File ... ]