mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 12:45:59 +02:00
lrzuntar: add page (#2456)
This commit is contained in:
parent
34d837bbb7
commit
a6da7a1297
1 changed files with 24 additions and 0 deletions
24
pages/linux/lrzuntar.md
Normal file
24
pages/linux/lrzuntar.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# lrzuntar
|
||||
|
||||
> A wrapper for `lrunzip` to simplify decompression of directories.
|
||||
> See also: `lrztar`, `lrzip`.
|
||||
|
||||
- Decompress from a file to the current directory:
|
||||
|
||||
`lrzuntar {{path/to/archive.tar.lrz}}`
|
||||
|
||||
- Decompress from a file to the current directory using a specific number of processor threads:
|
||||
|
||||
`lrzuntar -p {{8}} {{path/to/archive.tar.lrz}}`
|
||||
|
||||
- Decompress from a file to the current directory and silently overwrite items that already exist:
|
||||
|
||||
`lrzuntar -f {{archive.tar.lrz}}`
|
||||
|
||||
- Specify the output path:
|
||||
|
||||
`lrzuntar -O {{path/to/directory}} {{archive.tar.lrz}}`
|
||||
|
||||
- Delete the compressed file after decompression:
|
||||
|
||||
`lrzuntar -D {{path/to/archive.tar.lrz}}`
|
Loading…
Add table
Reference in a new issue