🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## findstr ``` findstr "hello world" 1.txt // 在1.txt文件中搜索hello或world findstr /s /i "Hello" *.* //不区分大小写,在当前目录和所有子目录中的所有文件中的hello dir |findstr "go" // 与grep 用法相同 ```