可能重复:
is it possible to find the file which contains a specific text in linux?
我想通过Linux中的命令行找到文件目录中字符串的位置。
例如,我想找到字符串“isOutOfCircle()”出现在属于“My Project”目录的文件中的位置。这该怎么做?
答案 0 :(得分:1)
grep -R 'isOutOfCircle()' "My Project"
-R
用于递归搜索。您可能需要man grep
了解更多详情。