I am using the following command to grep stuff in subdirs
find . | xargs grep -s \'s:text\'
However, this also finds stuff like
You want the -w option to specify that it's the end of a word.
-w
find . | xargs grep -sw 's:text'