![왜 --exclude of tar가 작동하지 않습니까?](https://linux55.com/image/130181/%EC%99%9C%20--exclude%20of%20tar%EA%B0%80%20%EC%9E%91%EB%8F%99%ED%95%98%EC%A7%80%20%EC%95%8A%EC%8A%B5%EB%8B%88%EA%B9%8C%3F.png)
다음의 간단한 명령은 다음과 같은 결과를 생성합니다.
$ 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" 패턴이 아무 것도 수행하지 않는 이유는 무엇입니까?