grep -r "hello" *
找到当前目录下所有包含hello字符串的文件,-r 表示递归查找,*表示当前目录
find / -name "*hello"
表示查找文件名中包含hello的所有文件,/表示根目录