windows下统计查询结果的行数
(源自:杨志刚 博客 http:/yangzhigang.cublog.cn)
以统计TCP连接数为例:
如在linux下就很方便,大家也都知道,就是用:
//查行数
netstat -ant | grep ESTABLISHED | wc -l
//查行数+内容
netstat -ant | grep ESTABLISHED | wc -l;netstat -ant | grep ESTABLISHED
//查行数+分隔符+内容
netstat -ant | grep ESTABLISHED | wc -l;echo -------------------------;netstat -ant | grep ESTABLISHED
//(查行数+分隔符+内容)/每两秒
watch "netstat -ant | grep ESTABLISHED | wc -l;echo --------------;netstat -ant | grep ESTABLISHED"
但是在windows下,默认是没有grep和wc的,如统计行数可以使用下面方法:
//查行数
netstat -an -p tcp | find /c "ESTABLISHED"
//(查行数+分隔符+内容)/每两秒,要用BAT了
@echo off
@title get_netstat_status
@color 1a
:start
netstat -an -p tcp | find /c "ESTABLISHED"
echo ----------------------
netstat -an -p tcp | find "ESTABLISHED"
ping -n 2 127.0.0.1 > NULL
goto :start
阅读(3410) | 评论(0) | 转发(0) |