LinuxCommandLibrary

unzstd

Decompress files with Zstandard compression.

TLDR

Decompress files

$ unzstd [path/to/file1.ztd path/to/file2.ztd ...]
copy


Decompress a file into a specific output file
$ unzstd [path/to/compressed.ztd] -o [path/to/extracted_file]
copy


Display information about a compressed file
$ unzip --list [path/to/file.zst]
copy

Copied to clipboard