grep -r 'text goes here' path_goes_here
brew install ack
ack "text goes here"
find . |grep "text goes here"
grep -RnslI "text goes here"
``` &001
Ignacio的回答很好,帮助我找到了包含某些文本的文件。我遇到的唯一问题是,当运行这个命令时,所有的文件都会被列出,其中包括一个没有显示图案的文件。
如果你在命令中加入No such file or directory
,如:-s
; grep -lr "text pattern" ./ -s
,它将只显示出包含图案的文件。如何让grep不打印出 “No such file or directory "错误?](https://stackoverflow.com/questions/6426363/how-can-i-have-grep-not-print-out-no-such-file-or-directory-errors)