DOS命令FindStr
我需要使用DOS命令FINDSTR来搜索我们所有与其他类型的文件(例如PDF、exe、dll等)混合的源代码文件。
我不需要搜索那些二进制文件。有没有办法排除二进制文件?
我的命令看起来像
findstr /r /n /o /s /g:c:\projects\vsssearch\muafinddata.txt /d:c:/projects/axl *.axl > output.txt
提前感谢您的任何见解。
约翰
I have a need to use the DOS command FINDSTR to search in all our source code files mixed with other types of files such as PDF, exe, dll, etc.
I do not need to search those binary files. Is there a way to exclude binary files?
My command looks like
findstr /r /n /o /s /g:c:\projects\vsssearch\muafinddata.txt /d:c:/projects/axl *.axl > output.txt
Thanks in advance for any insight.
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你试试/p吗?帮助说:“/P 跳过带有不可打印字符的文件。”
Do yo try /p? Help says: "/P Skip files with non-printable characters."