Linux命令:在文件内容中查找字符串

时间:2012-12-17 07:32:56

标签: linux command-line

  

可能重复:
  is it possible to find the file which contains a specific text in linux?

我想通过Linux中的命令行找到文件目录中字符串的位置。
例如,我想找到字符串“isOutOfCircle()”出现在属于“My Project”目录的文件中的位置。这该怎么做?

1 个答案:

答案 0 :(得分:1)

grep -R 'isOutOfCircle()' "My Project"

-R用于递归搜索。您可能需要man grep了解更多详情。