tar 压缩和解压

将xxx.zip解压到 tmp文件夹:

tar  zxvf  ./xxx.zip  -C  tmp

将文件夹里的文件压缩为xxx.zip:

tar  -zcvf   ./xxx.zip    *

你可能感兴趣的:(工作笔记)