windows 给ping加时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 给ping加时间相关的知识,希望对你有一定的参考价值。

 

@echo off

set /p host=host Address:
set logfile=Log_%host%.log

echo Target Host = %host% >%logfile%
for /f "tokens=*" %%A in (‘ping %host% -n 1 ‘) do (echo %%A>>%logfile% && GOTO Ping)
:Ping
for /f "tokens=* skip=2" %%A in (‘ping %host% -n 1 ‘) do (
echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A>>%logfile%
echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A
timeout 1 >NUL
GOTO Ping)

以上是关于windows 给ping加时间的主要内容,如果未能解决你的问题,请参考以下文章

如何为DOS批处理ping指令加时间戳?

xshell 7能不能给local窗口加时间戳?

linux下ping加时间戳实时输出到文件 放后台运行

linux长ping带时间输出到日志

有的网站请求js的时候js后面加时间戳有啥作用

linux下ping -T(也就是加入时间戳)如何使用?不知道应该带啥类型的数据,总是返回说数据类型不对。