I want to do this:
findstr /s /c:some-symbol *
or the grep equivalent
grep -R some-symbol *
but I need
On Windows, you can also use find.exe.
find /i /n "YourSearchString" *.*
The only problem is this prints file names followed by matches. You may filter them by piping to findstr
find /i /n "YourSearchString" *.* | findstr /i "YourSearchString"