Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
linux/lrzuntar Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# lrzuntar
> A wrapper for `lrunzip` to simplify decompression of directories.
> See also: `lrztar`, `lrzip`.
> More information: <https://manned.org/lrzuntar>.
- 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}}`