我用
tar hczf t.tar.gz * --exclude="./test1"
其中test1是我想防止被tarred的目录的名称。
不幸的是,tar仍然包含目录test1。 我怎么能有tar排除目录?
所以事实certificate,为了防止tar目录你需要改变你添加的地方–exclude
tar --exclude="./test1" -hczf t.tar.gz *
作品
尝试…
tar hczf t.tar.gz * --exclude="test1"