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 -rwn word /some/dir1/ /other/dir2/
阅读GNU grep文档!
如果您使用的是 bash,则可以使用以下内容:
grep 'pattern' {dir1,dir2,dir3}/filename
将每个文件指定为参数:
grep -w vwhat /some/file /another/file /a/third/file