xz: add lzma format examples (#2908)

italian
Andrik Albuquerque 2019-04-14 21:24:14 -03:00 committed by Lucas Gabriel Schneider
parent 9a16e012cc
commit 6fe385b344
1 changed files with 11 additions and 2 deletions

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}}`