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.
我在我的 Unix 机器上的一个目录中检查了代码>
我需要比较两个文件以查看它们是如何在整个代码中引用的。所以这将涉及搜索目录,然后搜索文件。
所以我有点喜欢那里
search through files within the folder structure | grep "myReference" | less
问题是我不知道做第一个位的有效方法。
grep -nir 'myReference' .| 较少的
grep -nir 'myReference' .
grep -nr "Search term" /path/to/files/