[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[网络连接] 批处理如何提取ping某个主机返回结果中延迟时间/响应时间大于5ms的行数据?

本帖最后由 pcl_test 于 2016-5-12 12:54 编辑

请教大家,怎么提取ping一个地址里面的  time大于5ms的行记录到TXT里。最好是可以加上时间!

Pinging www.a.shifen.com [14.215.177.37] with 32 bytes of data:
Reply from 14.215.177.37: bytes=32 time=5ms TTL=56
Reply from 14.215.177.37: bytes=32 time=5ms TTL=56
Reply from 14.215.177.37: bytes=32 time=8ms TTL=56
Reply from 14.215.177.37: bytes=32 time=10ms TTL=56


Ping statistics for 14.215.177.37:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 5ms, Maximum = 5ms, Average = 5ms
1

评分人数

  1. @echo off
  2. setlocal ENABLEDELAYEDEXPANSION
  3. for /f "tokens=1-7* delims== " %%a in ('ping  www.a.shifen.com^|find /i "Reply"') do (
  4.   set str=%%g
  5.   set str=!str:ms=!
  6.   if !str! gtr 5 echo.%%a %%b %%c %%d=%%e %%f=%%g %%h
  7. )
  8. pause
复制代码

TOP

  1. ping www.a.shifen.com|findstr /r /c:"time=[6-9]ms" /c:"time=[1-9][0-9][0-9]*ms"
  2. pause
复制代码

TOP

谢谢 各位! 已解决!

TOP

回复 4# 不点饣


    如何解决的?

TOP

怎么解决的?能告知一下吗?
  1. ping www.a.shifen.com|findstr /r /c:"time=[6-9]ms" /c:"time=[1-9][0-9][0-9]*ms"
  2. pause
复制代码
后面的time=[1-9][0-9][0-9]*ms 这个是搜索什么呢?

TOP

回复 6# yujw668


    搜索的是大于等于10ms的情况
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

  1. @echo off
  2. setlocal ENABLEDELAYEDEXPANSION
  3. for /f "tokens=1-7* delims== " %%a in ('ping www.a.shifen.com  ^|findstr /r /c:"时间=[0-9]ms" /c:"时间=[1-9][0-9][0-9]*ms"
  4. ') do (
  5.   set str=%%g
  6.   set str=!str:ms=!
  7.     if !str! gtr 3 echo.%date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%a %%b %%c %%d=%%e %%f=%%g %%h>>wenti.txt
  8. if !str! gtr 3 echo.%date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%a %%b %%c %%d=%%e %%f=%%g %%h
  9. )
  10. pause
复制代码
问题1、就是想一直ping ,加上-t参数之后就运行不了起来了。
问题2、/c:"时间=[1-9][0-9][0-9]*ms  "*"是什么意思?搜索大于10毫秒是不是不用“*”号?

TOP

回复 8# yujw668


搜索大于10毫秒是不是不用“*”号?

你可以去掉*号试验一下能否正确的匹配到几十秒、几百秒、几千秒等情况,如果可以,那就不用*号。
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 8# yujw668


for循环命令要得到 ping xxx | findstr xxx 得到的结果才能进行处理
ping -t 会不停的执行,导致for命令无法获取结果进行后续处理
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表