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
Select-String worked best for me. All the other options listed here, such as findstr, didn't work with large files.
Select-String
findstr
Here's an example:
select-string -pattern "" -path ""
note: This requires Powershell