DOS FindStr Team

I need to use the DOS FINDSTR command to search all our source code files mixed with other file types such as PDF, exe, dll, etc.

I do not need to search for these binaries. Is there any way to exclude binaries?

My team looks like

findstr /r /n /o /s /g:c:\projects\vsssearch\muafinddata.txt /d:c:/projects/axl *.axl > output.txt 

Thanks in advance for your understanding.

John

+4
source share
1 answer

Are you trying / p? Help says: "/ P Skip files with non-printable characters."

+11
source

All Articles