ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
[TOC] ## findstr ``` findstr "hello world" 1.txt // 在1.txt文件中搜索hello或world findstr /s /i "Hello" *.* //不区分大小写,在当前目录和所有子目录中的所有文件中的hello dir |findstr "go" // 与grep 用法相同 ```