Forrest logo
back to context overview

xz

List of commands for xz:

  • xz:tldr:408b9 xz: Decompress an LZMA file.
    $ xz -d --format=${lzma} ${file-lzma}
    try on your machine
    explain this command
  • xz:tldr:73543 xz: Decompress a xz file.
    $ xz -d ${file-xz}
    try on your machine
    explain this command
  • xz:tldr:85e80 xz: Compress a file using the best compression.
    $ xz -9 ${filename}
    try on your machine
    explain this command
  • xz:tldr:88f34 xz: Compress a file to the LZMA file format.
    $ xz --format=${lzma} ${filename}
    try on your machine
    explain this command
  • xz:tldr:a1a8e xz: Compress a file to the xz file format.
    $ xz ${filename}
    try on your machine
    explain this command
  • xz:tldr:ae2e0 xz: Decompress a file and write to `stdout`.
    $ xz -dc ${file-xz}
    try on your machine
    explain this command
  • xz:tldr:b6c4e xz: Compress a file, but don't delete the original.
    $ xz -k ${filename}
    try on your machine
    explain this command
  • xz:tldr:d9dd7 xz: Compress a file using the fastest compression.
    $ xz -0 ${filename}
    try on your machine
    explain this command
back to context overview