DLZ super fast compression for large files
1–3 of 3 posts
Re: DLZ super fast compression for large files
#2Is 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
fiRe: DLZ super fast compression for large files
#3Is 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...