mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 17:26:01 +02:00
lrzip: add page (#2436)
This commit is contained in:
parent
01b1cf5c81
commit
437beb75d0
1 changed files with 28 additions and 0 deletions
28
pages/linux/lrzip.md
Normal file
28
pages/linux/lrzip.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# lrzip
|
||||
|
||||
> A large file compression program.
|
||||
> See also `lrunzip`, `lrztar`, `lrzuntar`.
|
||||
|
||||
- Compress a file with LZMA - slow compression, fast decompression:
|
||||
|
||||
`lrzip {{filename}}`
|
||||
|
||||
- Compress a file with BZIP2 - good middle ground for compression/speed:
|
||||
|
||||
`lrzip -b {{filename}}`
|
||||
|
||||
- Compress with ZPAQ - extreme compression, but very slow:
|
||||
|
||||
`lrzip -z {{filename}}`
|
||||
|
||||
- Compress with LZO - light compression, extremely fast decompression:
|
||||
|
||||
`lrzip -l {{filename}}`
|
||||
|
||||
- Compress a file and password protect/encrypt it:
|
||||
|
||||
`lrzip -e {{filename}}`
|
||||
|
||||
- Override the number of processor threads to use:
|
||||
|
||||
`lrzip -p {{8}} {{filename}}`
|
Loading…
Add table
Reference in a new issue