-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
28 lines (23 loc) · 1.04 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
LZ4 is a very fast lossless compression algorithm, providing compression speed at 300 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in GB/s per core, typically reaching RAM speed limits on multi-core systems.
A high compression derivative, called LZ4_HC, is also provided. It trades CPU time for compression ratio
The original project is found at: https://code.google.com/p/lz4/
Use make all to build all binaries
USAGE:
- - - - - - - - - - - - - - - - - - - - - - - -
lz4c, lz4c32 or lz4cs
Usage :
lz4c [arg] [input] [output]
input : a filename, or
'stdin' or '-' for pipe mode (default if empty)
Arguments :
-c0/-c : Fast compression (default)
-c1/-hc: High compression
-d : decompression
-y : overwrite without prompting
-h/-H : Help (this text + advanced options)
- - - - - - - - - - - - - - - - - - - - - - - - -
fuzzer
Select an Initialisation number (default : random) :
- - - - - - - - - - - - - - - - - - - - - - - - - -
END USAGE
BSD-3 license applies