linux 压缩与解压缩

压缩

tar -zcvf  压缩文件名 压缩源目录的绝对路劲

例如: tar -zcvf test.tar.gz /tmp

解压缩

tar -zxvf 压缩源文件 -C 解压目录

tar -zxvf test.tar.gz -C /tmp

#######################################################

原文地址:https://www.cnblogs.com/python-cat/p/7374896.html