本帖最后由 qq2501 于 2011-12-28 20:10 编辑
- @echo off
- set /p web=请输入网址:
- set /p delay=请输入要延迟监测的时间(秒):
- :start
- curl %web% > web1.html
- ping 127.1 -n %delay%
- curl %web% > web.html
- fc /B web1.html web.html || goto beep
- goto start
- :beep
- echo
- goto beep
- ::http://bbs.bathome.net/thread-15089-1-1.html
- ::curl下载地址http://d.srui.cn:888/200811/curlwin32.rar
复制代码
|