How do I find out the files in the current directory which do not contain the word foo (using grep)?
foo
grep
The following command excludes the need for the find to filter out the svn folders by using a second grep.
svn
grep -rL "foo" ./* | grep -v "\.svn"