LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

zstdless

View zstd compressed files with pager

TLDR

View zstd compressed file
$ zstdless [file.zst]
copy

SYNOPSIS

zstdless [files...]

DESCRIPTION

zstdless allows viewing of Zstandard (.zst) compressed files using the less pager. It decompresses the file on the fly and pipes the output to less, providing the full interactive navigation experience including forward and backward scrolling, searching, and line jumping.This is particularly useful for browsing compressed log files and data without needing to decompress them to disk first. It is part of the zstd suite of compression utilities.

INSTALL

sudo apt install zstd
copy
sudo dnf install zstd
copy
sudo pacman -S zstd
copy
sudo apk add zstd
copy
sudo zypper install zstd
copy
brew install zstd
copy
nix profile install nixpkgs#zstd
copy

SEE ALSO

zstd(1), zstdcat(1), less(1)

Copied to clipboard
Kai