How do I find files that do not contain a given string pattern?

后端 未结 16 1257
半阙折子戏
半阙折子戏 2020-11-28 17:42

How do I find out the files in the current directory which do not contain the word foo (using grep)?

16条回答
  •  一整个雨季
    2020-11-28 18:09

    The following command gives me all the files that do not contain the pattern foo:

    find .  -not  -ipath '.*svn*' -exec  grep  -H -E -o -c  "foo"  {} \; | grep 0
    

提交回复
热议问题