ale*_*lex 5 terminal grep macos
我正在使用 OS X。
我需要在具有.php
扩展名和41
文件内容中某处的字符串的目录中查找文件。
我尝试使用grep
.
grep -R 41 *.php
Run Code Online (Sandbox Code Playgroud)
然而,这似乎只能在 CWD 中找到文件,而不是在子目录中。
我也试过弄乱find
.
我无法弄清楚这一点。
我究竟做错了什么?
Ign*_*ams 10
你需要两者。
find . -name '*.php' -type f -exec grep -q 41 {} \; -print
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
5721 次 |
最近记录: |