Removing pesky ._ files created by Textmate

16/05/2008
find . -name ._* | grep -v .svn | xargs rm

The grep -v switch will negate (or reverse) the result set. In this case, it will find paths that do not include ‘.svn’.

No Comments