本文介绍了我怎样才能让grep不打印'没有这样的文件或目录'错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<$ p
$ p> > - no-messages 标志来压制错误。
grep模式* -s -R -n
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 -n whatever/.git/svn: No such file or directory
Is there any way I can make those lines go away?
解决方案
You can use the -s or --no-messages flag to suppress errors.
grep pattern * -s -R -n
这篇关于我怎样才能让grep不打印'没有这样的文件或目录'错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!