解压单个文件
tar -zxvf hello.tar.gz
解压当前目录下所有tar.gz
for f in *.tar.gz; do tar zxvf "$f"; done
压缩命令
tar -zcvf hello.tar.gz hello
分卷压缩
split -b 100M -d -a 1 hello.tar.gz hello.tar.gz.
解压分卷文件(例如hello.tar.gz.00,hello.tar.gz.01,hello.tar.gz.02)
cat hello.tar.gz.* | tar -zxv
或者直接cat *.tar.gz.* | tar -zxv