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