find 命令直接查找目标路径下含有想要查找文本的文件
下面两种方法都可行
find /etc |xargs grep Welcome
find /etc -exec grep Welcome {} \;