Hayden Schiff %!s(int64=9) %!d(string=hai) anos
pai
achega
c2a39d42c2
Modificáronse 1 ficheiros con 23 adicións e 0 borrados
  1. 23 0
      pages/common/xz.md

+ 23 - 0
pages/common/xz.md

@@ -0,0 +1,23 @@
+# xz
+
+> Compress or decompress .xz and .lzma files.
+
+- Compress a file:
+
+`xz {{file}}`
+
+- Decompress a file:
+
+`xz -d {{file.xz}}`
+
+- Decompress a file and write to stdout:
+
+`xz -dc {{file.xz}}`
+
+- Compress a file, but don't delete the original:
+
+`xz -k {{file}}`
+
+- Compress a file and attempt to improve compression ratio by using more CPU time:
+
+`xz -e {{file}}`