linux下压缩文件

1.tar

压缩
tar -cf a.tar *.log 解压
tar -xf a.tar

*这种方式只是把文件打在一个tar包里,并没有压缩

2.zip

压缩
zip -r a.zip *.log
解压
unzip a.zip
原文地址:https://www.cnblogs.com/zhh2020/p/12592407.html