findstr

最后更新于:2022-04-02 03:46:41

[TOC] ## findstr ``` findstr "hello world" 1.txt // 在1.txt文件中搜索hello或world findstr /s /i "Hello" *.* //不区分大小写,在当前目录和所有子目录中的所有文件中的hello dir |findstr "go" // 与grep 用法相同 ```
';