lxlsh 当前离线
上等兵
DAIC 当前离线
中将
TOP
@echo off for /f %%i in ('netstat -an ^| find /c "9001"') do ( set n=%%i ) if %n% gtr 1 ( goto :act_1 ) else ( goto :act_2 ) goto :end :act_1 echo 一种操作 goto :end :act_2 echo 另一种操作 goto :end :end pause复制代码