如何在目录中查找具有指定字符串的文件(shell)时间:2021-11-23 14:37:59find /tmp/ -name test.txt | xargs grep "hello" 可以查找到tmp目录下文件名test.txt并包含字符串hello的文件。