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 -r foo”在目录中搜索文本时,它需要永远并且永远不会返回任何结果。目录大小没有区别,即使我的当前目录只包含一个很小的文本文件而没有其他内容,递归搜索仍然需要很长时间。这只发生在我安装在 VMWare VM 上的 Ubuntu 服务器上。
在我的另一个 VMWare VM 上,我安装了 Lubuntu,并且 grep -r 效果很好。
请帮忙。
您缺少一个参数,指示您要查找模式的目录:
grep -r foo
应该
grep -r foo .
或者
grep -r foo /path/to/dir/