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:
parent
9a16e012cc
commit
6fe385b344
1 changed files with 11 additions and 2 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue