Board logo

标题: [网络连接] 批处理如何获取ping结果中响应时间大于10ms的记录并按指定格式输出? [打印本页]

作者: twt212    时间: 2017-7-22 00:16     标题: 批处理如何获取ping结果中响应时间大于10ms的记录并按指定格式输出?

批处理记录ping time大于10
比如 ping www.baidu.com -t
time大于10的时候记录当前时间并保存到C盘的123.txt
小于10的不要记录

如记录这样的格式:
2017-07-21 23:48  time=25

2017-07-21 23:49  time=50

作者: qazplm    时间: 2017-7-22 12:53

本帖最后由 qazplm 于 2017-7-31 07:43 编辑

ps
  1. ping www.baidu.com -t|%{$_ -match '(?<==)\d+(?=ms)'|out-null;if([int]$matches[0] -gt 10){(Get-Date).toString()+' time='+$matches[0]}}|tee -filepath 'C:\123.txt'
复制代码

作者: twt212    时间: 2017-7-30 07:59

回复 2# qazplm


    闪一下就不见了,不知哪里出错了?
作者: Batcher    时间: 2017-7-30 09:43

回复 3# twt212


2楼是PowerShell脚本,不是BAT脚本,你可以这样执行试试:
http://bbs.bathome.net/thread-31071-1-1.html




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2