linux常用命令2时间:2021-06-27 10:52:19 grep -r "hello" * 找到当前目录下所有包含hello字符串的文件,-r 表示递归查找,*表示当前目录 find / -name "*hello" 表示查找文件名中包含hello的所有文件,/表示根目录