I need to do a recursive grep in Windows, something like this in Unix/Linux:
grep -i \'string\' `find . -print`
or the more-preferred metho
for /f %G in ('dir *.cpp *.h /s/b') do ( find /i "what you search" "%G") >> out_file.txt