I am using the following command to grep stuff in subdirs
find . | xargs grep -s \'s:text\'
However, this also finds stuff like
You can drop the xargs command by making grep search recursively. And you normally don't need the 's' flag. Hence:
xargs
grep -wr 's:text'