Interesting program. Thanks!
But Microsoft actually has such text searcher in the command line

:
Code:
findstr /s /i /m "string" *
This will search for "string" (case-insensitive) in all files from the current folder and all subfolders and will print the filenames of files containing a match. See program's help ("
findstr /?"). It can even use regular expressions for search.