(一) tgz压缩命令(tar.gz,tgz格式是相同的,命名不同而已) Bash tar -zcvf examples.tgz examples (examples当前执行路径下的目录) 说明: -z, --gzip filter the archive through gzip 通过gzip压缩的形式对文件进行归档 举例: tar -zcvf file.tgz dir #dir目录 (二) tgz 解压命令 Bash tar -zxvf examples...