Removing pesky ._ files created by Textmate
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’.
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’.