How can I have grep not print out 'No such file or directory' errors?

后端 未结 9 985
情书的邮戳
情书的邮戳 2020-11-28 19:06

I\'m grepping through a large pile of code managed by git, and whenever I do a grep, I see piles and piles of messages of the form:

> grep pattern * -R -         


        
9条回答
  •  遥遥无期
    2020-11-28 19:28

    Errors like that are usually sent to the "standard error" stream, which you can pipe to a file or just make disappear on most commands:

    grep pattern * -R -n 2>/dev/null
    

提交回复
热议问题