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

后端 未结 16 1317
半阙折子戏
半阙折子戏 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 17:56

    The following command could help you to filter the lines which include the substring "foo".

    cat file | grep -v "foo"
    

提交回复
热议问题