LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

unzstd

Decompress Zstandard compressed files

TLDR

Decompress file
$ unzstd [file.zst]
copy
Keep original
$ unzstd -k [file.zst]
copy
To stdout
$ unzstd -c [file.zst]
copy
Force overwrite
$ unzstd -f [file.zst]
copy
Decompress multiple
$ unzstd [file1.zst] [file2.zst]
copy

SYNOPSIS

unzstd [-k] [-c] [-f] [options] files

DESCRIPTION

unzstd decompresses files that were compressed with the Zstandard (zstd) algorithm. It is functionally equivalent to running zstd --decompress and is provided as a convenience command within the zstd package.Zstandard offers very fast decompression speeds while achieving compression ratios comparable to zlib. By default, unzstd replaces the compressed .zst file with the decompressed output. The -k flag preserves the original, and -c writes to standard output for piping.Developed by Facebook (now Meta) and released in 2016, Zstandard has been adopted by the Linux kernel, package managers like pacman and apt, and many other tools as a modern replacement for gzip that provides both better compression and faster decompression.

PARAMETERS

-k

Keep original.
-c
Write to stdout.
-f
Force overwrite.
-v
Verbose mode.
-q
Quiet mode.

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

CAVEATS

Newer format. May not be everywhere. Part of zstd package.

HISTORY

unzstd is part of Zstandard (zstd), a fast compression algorithm developed by Facebook.

SEE ALSO

zstd(1), gzip(1), xz(1)

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid