grep -rn "要查找的字符串" *
-r 是递归查找
-n 是显示行号
* : 表示当前目录所有文件,也可以是某个文件名。
grep命令的常用格式为:grep [选项] ”模式“ [文件]。
模式部分:
1、直接输入要匹配的字符串,这个可以用fgrep(fast grep)代替来提高查找速度,比如我要匹配一下hello.c文件中printf的个数:fgrep -c "printf" hello.c。
2、使用基本正则表达式。
扩展资料:
查找字符串的第二种方法:
find .|xargs grep “要查找的字符串”
find . -exec grep “要查找的字符串” {} \;
find / -name "要查找的字符串"
find / -name "要查找的字符串"