zstd --压缩工具

Zstandard (也被称为zstd )是一款免费的开源,快速实时数据压缩程序,具有更好的压缩比 (约为 10:1)。

安装

yum group install "Development Tools" 
cd /usr/local	
git clone https://github.com/facebook/zstd.git
cd zstd
make
make install
ln -s /usr/local/zstd/zstd /usr/bin/

使用

压缩/test/*

tar -I zstd -c /test/* -f test.etcd

解压test.etcd

tar -I zstd -xvf test.etcd
原文地址:https://www.cnblogs.com/huandada/p/10595727.html