如何找出当前目录中 不* 包含单词(使用)的 文件 ? *foo``grep
foo``grep
以下命令为我提供了所有不包含该模式的文件foo:
foo
find . -not -ipath '.*svn*' -exec grep -H -E -o -c "foo" {} \; | grep 0