::執行效果 ::日誌文件內容 ...
::執行效果
1 @echo off 2 3 ::等待用戶輸入需要監控IP 4 set /p ip=Input the IP required to monitor: 5 echo executing...... 6 :start 7 echo|set /p ="!" 8 9 ::將時間插入到日誌文件 10 echo %date% %time% >>%ip%_log.txt 11 ::findstr "Reply Request", 伺服器端 12 ::find "來自", PC機端 13 14 ::測試結果插入到日誌文件 15 ping -n 1 %ip% | find "來自" >>%ip%_log.txt 16 17 ::調節結果輸出的頻率 18 ping 127.0.0.1 -n 4 >nul 19 goto start 20 pause
::日誌文件內容