grep -r 'text goes here' path_goes_here
brew install ack
ack "text goes here"
find . |grep "text goes here"
を通して 1. grep
grep -RnslI "text goes here"
``` を通して
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)