当前位置: 技术问答>linux和unix
如何在目录下查找文件中的字句
来源: 互联网 发布时间:2016-05-20
本文导语: 如何在目录下查找文件中的字句? 比如:ls ./project -hello.h -hello.cpp -list.h -list.cpp -newhello.cpp 这些文件里有一句hello()的函数,我想查看哪些文件用过这个函数,应该怎么用egrep?? | grep 'hello()' *.h *.cpp
如何在目录下查找文件中的字句?
比如:ls ./project
-hello.h
-hello.cpp
-list.h
-list.cpp
-newhello.cpp
这些文件里有一句hello()的函数,我想查看哪些文件用过这个函数,应该怎么用egrep??
比如:ls ./project
-hello.h
-hello.cpp
-list.h
-list.cpp
-newhello.cpp
这些文件里有一句hello()的函数,我想查看哪些文件用过这个函数,应该怎么用egrep??
|
grep 'hello()' *.h *.cpp