1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/linux/lrzip.md
2018-10-15 23:57:32 +01:00

28 lines
621 B
Markdown

# 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}}`