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

后端 未结 16 1276
半阙折子戏
半阙折子戏 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:10

    I had good luck with

    grep -H -E -o -c "foo" */*/*.ext | grep ext:0
    

    My attempts with grep -v just gave me all the lines without "foo".

提交回复
热议问题