Tools:实现ping操作带时间戳【windows+linux】
2021-06-30 10:07
标签:stdout 效果 adl done lag create sage object next 【windows下】: ping.vbs ping.bat 执行ping.bat即可 效果如下: Microsoft (R) Windows Script Host Version 5.812 2018/11/19 14:17:13 来自 10.8.115.115 的回复: 字节=32 时间2018/11/19 14:17:14 来自 10.8.115.115 的回复: 字节=32 时间2018/11/19 14:17:15 来自 10.8.115.115 的回复: 字节=32 时间2018/11/19 14:17:16 来自 10.8.115.115 的回复: 字节=32 时间=1ms TTL=200 【linux下】 ping $1 |while read line;do echo `date`$line;done >> ping_test.log 效果: root@/root/chen#ping 10.8.210.101 |while read line;do echo `date`$line;done Tools:实现ping操作带时间戳【windows+linux】 标签:stdout 效果 adl done lag create sage object next 原文地址:https://www.cnblogs.com/channy14/p/9982926.htmlDim args, flag, unsuccOut
args=""
otherout=""
flag=0
If WScript.Arguments.count = 0 Then
WScript.Echo "Usage: cscript tping.vbs [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]"
WScript.Echo " [-s count] [[-j host-list] | [-k host-list]]"
WScript.Echo " [-r count] [-w timeout] destination-list"
wscript.quit
End if
For i=0 to WScript.Arguments.count - 1
args=args & " " & WScript.Arguments(i)
Next
Set shell = WScript.CreateObject("WScript.Shell")
Set re=New RegExp
re.Pattern="^Reply|^Request|^来自|^请求"
Set myping=shell.Exec("ping" & args)
while Not myping.StdOut.AtEndOfStream
strLine=myping.StdOut.ReadLine()
‘WScript.Echo "原数据" & chr(9) & strLine
r=re.Test(strLine)
If r Then
WScript.Echo date & " "& time & chr(9) & strLine
flag=1
Else
unsuccOut=unsuccOut & strLine
End if
Wend
if flag = 0 then
WScript.Echo unsuccOut
end if
cscript ping.vbs 10.8.115.127 -n 10 >ping_log.txt
版权所有(C) Microsoft Corporation。保留所有权利。
Mon Nov 19 14:23:42 CST 2018PING 10.8.210.101 (10.8.210.101) 56(84) bytes of data.
Mon Nov 19 14:23:42 CST 201864 bytes from 10.8.210.101: icmp_seq=1 ttl=64 time=0.257 ms
Mon Nov 19 14:23:43 CST 201864 bytes from 10.8.210.101: icmp_seq=2 ttl=64 time=0.163 ms
Mon Nov 19 14:23:44 CST 201864 bytes from 10.8.210.101: icmp_seq=3 ttl=64 time=0.141 ms
Mon Nov 19 14:23:45 CST 201864 bytes from 10.8.210.101: icmp_seq=4 ttl=64 time=0.160 ms
Mon Nov 19 14:23:46 CST 201864 bytes from 10.8.210.101: icmp_seq=5 ttl=64 time=0.148 ms
文章标题:Tools:实现ping操作带时间戳【windows+linux】
文章链接:http://soscw.com/index.php/essay/99803.html