Preciso excluir .git da minha pesquisa de find . Para conseguir isso, estou usando a opção -path ./.git -prune :
$ find . -path ./.git -prune -o \( -type f -o -type l -o -type d \) | grep '.git'
./.git
No entanto, mesmo que isso ig...
18.01.2014 / 16:57