Windows cmd findstr 命令使用说明

例子:

netstat -na | findstr "192\.168\.1\.144:8081.*" | wc -l

findstr 类似 linux 下的 grep
查找字符串中,如果有空格,则表示搜索多个字符串,即:
findstr "str1 str2" 表示搜索有 str1  或者 str2 的行,除非使用 /c 参数

查找字符串中,可以使用正则表达式

参数说明:
/n 显示行号
/c:"搜索字符串" 指定查找字符串,没有此参数,默认字符串中的空格会成为分隔符