Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想搜索一些字符串是直接在文件中的所有子文件夹
我需要找出字符串:
DEBUG ('[S:B:H] project=', $project->name, '<<<<<<<<<<<<<');
我曾经使用 grep -lir 'some text' *
但我想它不是那样工作的。
这个有效::
grep -lier 'DEBUG ('\''\[S:B:H] project='\'', $project->name, '\''<<<<<<<<<<<<<'\'');' <testfile>