mdfind 'kMDItemUserTags!=*' -onlyin . -0|xargs -0 rm
Ou usando a tag :
find . -type f|while read f;do [[ $(tag -m \* "$f") ]]||rm "$f";done
Como posso excluir tudo em uma pasta que não tenha uma tag? Peneirar manualmente é bastante irracional.
mdfind 'kMDItemUserTags!=*' -onlyin . -0|xargs -0 rm
Ou usando a tag :
find . -type f|while read f;do [[ $(tag -m \* "$f") ]]||rm "$f";done
Tags osx-mavericks