Files
linux.softwareshinobi.com/landing/docs/.recycle/.recycle2/122-the-zcat-command.md

31 lines
398 B
Markdown
Raw Normal View History

2025-03-14 15:46:26 -04:00
# 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
```
2. 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 ... ]
```