LinuxCommandLibrary

unzstd

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 Zstandard files. It extracts .zst.
Fast decompression. Very fast algorithm.
Equivalent to zstd -d. Same tool.
Modern format. Facebook developed.
High speed. Optimized decompression.

PARAMETERS

-k

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

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)

Copied to clipboard