Forrest logo
back to context overview

zstd

List of commands for zstd:

  • zstd:tldr:736cb zstd: Decompress to `stdout`.
    $ zstd -dc ${filename}.zst
    try on your machine
    explain 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 machine
    explain this command
  • zstd:tldr:b1b42 zstd: Compress a file into a new file with the `.zst` suffix.
    $ zstd ${filename}
    try on your machine
    explain 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 machine
    explain this command
  • zstd:tldr:ef5ce zstd: Decompress a file.
    $ zstd -d ${filename}.zst
    try on your machine
    explain this command
back to context overview