Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to search for a word/phrase within all the php files and all sub-directories where the command is run from. I'm using ssh with root access.

share|improve this question

1 Answer

up vote 2 down vote accepted
find . -type f -name \*php|xargs grep -i yourword
share|improve this answer
I just want a list of all the php files that contain the keyword and not the contents inside. Is that possible? – user962449 Apr 4 '12 at 21:29
The "-c" flag will work, e.g. "grep -ic yourword" – coder_tim Apr 4 '12 at 21:31
that's perfect, but how can it now only show the results where the keyword was actually found? – user962449 Apr 4 '12 at 21:33
-n option will print the line numbers of where the matches were found. – Marc B Apr 4 '12 at 21:37
thanks, found that -l helps too. – user962449 Apr 4 '12 at 21:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.