标签: string command-line find
使用命令net user %username% /DOMIN,我试图剪切结果以使输出更小,但是当我使用| Find "text here"时,我只能搜索一个带有每个命令空格的字符串。有没有办法让| Find包含多个包含空格的字符串?
net user %username% /DOMIN
| Find "text here"
| Find
示例:| Find "User name" | Find "Full Name"
| Find "User name"
| Find "Full Name"
答案 0 :(得分:1)
您是说| Find "User name" | Find "Full Name"不起作用吗?
| Find "User name" | Find "Full Name"
不幸的是find不适用于多个字符串。但findstr确实如此。
find
findstr
...| Findstr /i /L /c:"User name" /c:"Full Name"
应该适合你。
......哦,我明白了!您希望string1 或 string2,但级联find将过滤string1 和 sting2。
string1
string2
sting2