Removing pesky ._ files created by Textmate
16/05/2008find . -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’.
small snippets of webmonkey wisdom
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’.