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