批处理文件ping -t命令

时间:2012-04-07 17:13:32

标签: batch-file ping

我正在制作批处理文件,以找到ping -t的时间平均值。如何从ping输出中提取时间。

1 个答案:

答案 0 :(得分:0)

从下面的代码中你会得到一些提示。

SET CONNECT=YES
PING google.com | FIND "time=" > NUL
IF ERRORLEVEL 1 SET CONNECT=NO
ECHO You have %CONNECT% active connection to the Internet