自分メモ

最近 .svn があるソレを取り扱う事が多くて微妙にストレスフル。
emacs の M-x find-grep で除去するには、ということで M-x find-grep で出てくる以下を

find . -type f -exec grep -nH -e  {} /dev/null \;

以下にして

find . -type d -name '.svn' -prune -o -type f -exec grep -nH -e  {} /dev/null \;

で、検索キーワードを -e の後に type して

find . -type d -name '.svn' -prune -o -type f -exec grep -nH -e  hogehoge {} /dev/null \;

enter なのか。