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.
可能重复: 是否可以在 linux 中找到包含特定文本的文件?
我想通过 Linux 中的命令行查找文件目录中字符串的位置。例如,我想查找字符串“isOutOfCircle()”在属于“我的项目”目录的文件中的位置。这该怎么做?
grep -R 'isOutOfCircle()' "My Project"
-R用于递归搜索。您可能想man grep了解更多详细信息。
-R
man grep