zstdmt
Multithreaded zstd compression
TLDR
Compress with multithreading
$ zstdmt [file]
Compress with specific threads$ zstdmt -T[4] [file]
Decompress multithreaded$ zstdmt -d [file.zst]
Maximum compression$ zstdmt -19 [file]
SYNOPSIS
zstdmt [options] [files...]
DESCRIPTION
zstdmt is the multithreaded variant of the zstd compression utility. It automatically uses all available CPU cores for compression, equivalent to running zstd -T0, providing significantly faster throughput on multi-core systems.
The compressed output is fully compatible with standard zstd files and can be decompressed by any zstd-compatible tool. All standard zstd options for compression levels, decompression, and file handling are supported.
PARAMETERS
-T n
Number of threads (0 = auto).-d
Decompress.-1 to -19
Compression level.--ultra
Enable ultra mode (levels 20-22).-k
Keep source files.
