Live data from Hacker News

DLZ super fast compression for large files

github.com

1–3 of 3 posts

Re: DLZ super fast compression for large files

#3

Is this a joke? dlz: #!/bin/bash f=$1 x=${f: -3} if [ "$x" == "dlz" ]; then lz4 -d $f - | tar xvf - else tar cvf - $f | lz4 > ${f%.*}.dlz fi

Normally I try to be supportive of people's hobby projects but after checking out the repo I couldn't help but let out a chuckle...