Linux Commands Helper
💬 Your AI-powered Linux assistant
zless Command - View Compressed Files with Less
zless allows you to view the contents of compressed (gzip) files using the less
pager, without manually decompressing them first.
Syntax
zless [file.gz ...]
Examples
zless archive.log.gz
View a compressed log file with less.
Notes
- Supports all navigation features of
less
. - Useful for large compressed log files.
- File is decompressed on the fly for viewing.