1.tar
压缩tar -cf a.tar *.log 解压tar -xf a.tar
*这种方式只是把文件打在一个tar包里,并没有压缩
2.zip
压缩 zip -r a.zip *.log 解压 unzip a.zip