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 -r -s <searchterm> .
但它在输出线上说,但除了一些输出线上之外,如下所示。
Traversal results in a loop.
请帮忙。
该-r标志遵循符号链接,如果内部目录是指向外部目录的符号链接,则可能导致无限循环。您可以使用该-R标志不遵循符号链接。另一方面,错误无害。如果您想跟踪符号链接,请使用-rgrep 并在检测到可能的循环时向您发出警告。
-r
-R