tar 排除目录打包

假设 test目录下有 1 2 3 4 5 这5个目录

现在要将 3 4 5目录tar打包,1和2目录不要

命令如下:

tar -zcvf test.tar.gz –exclude=1 –exclude=2 test //test 目录下

tar -zcvf test.tar.gz –exclude=test/1 –exclude=test/2 test //test目录外