
zstd
List of commands for zstd:
-
zstd:tldr:736cb zstd: Decompress to `stdout`.$ zstd -dc ${filename}.zsttry on your machineexplain this command
-
zstd:tldr:af1a2 zstd: Unlock higher compression levels (up to 22) using more memory (both for compression and decompression).$ zstd --ultra -${level} ${filename}try on your machineexplain this command
-
zstd:tldr:b1b42 zstd: Compress a file into a new file with the `.zst` suffix.$ zstd ${filename}try on your machineexplain this command
-
zstd:tldr:b5399 zstd: Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default.$ zstd -${level} ${filename}try on your machineexplain this command
-
zstd:tldr:ef5ce zstd: Decompress a file.$ zstd -d ${filename}.zsttry on your machineexplain this command