You can use the -r(recursive) and -I(ignore binary) options in grep:
$ grep -rI "TEXTSEARCH" .
-IProcess a binary file as if it did not contain matching data; this is equivalent to the--binary-files=without-matchoption.-rRead all files under each directory, recursively; this is equivalent to the-d recurseoption.