我想让“netstat”命令持续运行。该怎么做?
答案1
答案2
您创建批处理文件以netstat
使用loop
:loop
netstat -nao | findstr :80
timeout /T 500
clear
goto loop
答案3
我使用这个命令
netstat -an 5
这里的 5 是 netstat 的神奇之处。它代表时间间隔。因此,一旦完成,它将等待那么多时间,例如,在这种情况下,它将等待 5 秒。......干杯
答案4
使用--contious
或-c
例如:
netstat -ano -p -c