CMD 批处理ping命令加上时间标识

新建 test.bat 文件,输入以下内容

@echo off
set filePath=E://Desktop/pinglog.txt
set ping_url=127.0.0.1
set sleep_times=1
:top
echo starting test network...
echo -------------------------------- >>%filePath%
echo %date% %time%>>%filePath%
ping %ping_url% -n 1|findStr "TTL" >> %filePath%
ping -n %sleep_times% 127.1 >nul
echo -------------------------------- >>%filePath%
goto top
posted @ 2022-07-25 09:38  Incercadi  阅读(1798)  评论(0编辑  收藏  举报