1
0
Fork 0
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:
Russ Edwards 2018-10-15 18:57:32 -04:00 committed by Starbeamrainbowlabs
parent 01b1cf5c81
commit 437beb75d0

28
pages/linux/lrzip.md Normal file
View 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}}`