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.
在我的项目中,我在多个文件中调用了一种方法。我想查看调用该方法的所有文件。使用命令行,有没有办法列出所有包含特定单词的文件?
你可以使用 grep
grep [word_to_find] [files]
例如,查找python文件中的所有方法定义
grep def *.py