Arghhh ... everytime I need this, I always have to Google it. Dunno why, but I'm not able to remember it :-). I want to have a list of files (just the path/name) which contain that keyword
The correct command is:
$ find . | xargs grep '##KEYWORD_YOU_WANT_TO_LOOKUP##' -sl
Comments
Why not simply do
Ahhh, I didn't know that one :-). Thanks!
Add new comment