grep:查找含有某字符串的所有文件 Oct 15, 2017 grep -rn "hello,world" * *:表示当前目录所有文件 -r 是递归查找 -n 是显示行号 -R 查找所有文件包含子目录 -i 忽略大小写