为什么 --exclude of tar 不起作用

为什么 --exclude of tar 不起作用

以下简单命令会产生以下结果:

$ tar -zcvf clusterops.tgz ansible --exclude='.git' --exclude='.idea' --exclude='**/.ssh' --exclude='*.log' | grep ssh
ansible/.ssh/
ansible/.ssh/ClouderaManagerKey.ppk
ansible/.ssh/ClouderaManagerKey.pem

这里发生了什么?为什么模式“**/.ssh”无法执行任何操作?

相关内容