t-mat / lz4mt

Platform independent, multi-threading implementation of lz4 stream in C++11
Other
198 stars 47 forks source link

Make argument handling compatible with tar (lz4 - issue 74) #17

Closed t-mat closed 11 years ago

t-mat commented 11 years ago

The following modifications are the minimum requirements for compatibility with tar(1):

lz4 - Issue 74: Make argument handling compatible with tar.

t-mat commented 11 years ago

compression:

tar -I lz4mt -cf out.tar.lz4 enwik8

decompression:

mkdir test
pushd test
tar -I lz4mt -xf ../out.tar.lz4
cmp -b ../enwik8 enwik8
popd