1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

xz: add lzma format examples (#2908)

This commit is contained in:
Andrik Albuquerque 2019-04-14 21:24:14 -03:00 committed by Lucas Gabriel Schneider
parent 9a16e012cc
commit 6fe385b344

View file

@ -1,15 +1,24 @@
# xz
> Compress or decompress .xz and .lzma files.
> Homepage: <https://tukaani.org/xz/format.html>.
- Compress a file:
- Compress a file to the xz file format:
`xz {{file}}`
- Decompress a file:
- Decompress a xz file:
`xz -d {{file.xz}}`
- Compress a file to the lzma file format:
`xz --format=lzma {{file}}`
- Decompress an lzma file:
`xz -d --format=lzma {{file.lzma}}`
- Decompress a file and write to stdout:
`xz -dc {{file.xz}}`