findstr

findstr

findstr /?

findstr "hello there" myfile 在 myfile 中搜索 “hello” 或 “there”。

findstr /c:"hello there" myfile 在 myfile 中搜索 “hello there”。注意与上例的不同。

dir /b | findstr /i /r /c:"[mp]" 搜索目录

资料