在你的系统中有一个文件,其中包含单词" UnixCommandInterviewQuestions“如何在Unix中找到该文件?

时间:2017-08-27 19:59:48

标签: unix command-line

这是在采访中提到的一个常见的$ unix问题。我知道你必须使用find命令,但确切的答案是什么?我在谷歌搜索,但无法找到一个正确的答案。下面的命令我试过但错了。

$find / -name "UnixCommandInterviewQuestions”

1 个答案:

答案 0 :(得分:0)

请务必仔细阅读问题。

它表示该文件包含“UnixCommandInterviewQuestions”,而不是文件名是“UnixCommandInterviewQuestions”。

一个正确的答案是递归grep命令,如:

grep -r UnixCommandInterviewQuestions /

还有其他解决方案可能更快。