@echo off rem 批处理无所不能:) ping www.163.com> %temp%\pingresult.txt for /f %%i in ( 'findstr "reply from " %temp%\pingresult.txt ') do @set touch=%%i del %temp%\pingresult.txt if defined touch ( :beep echo goto beep )
发表于:2007-06-07 21:54:553楼 得分:0
@echo off rem 批处理无所不能:) ping www.163.com> %temp%\pingresult.txt for /f %%i in ( 'findstr "reply from " %temp%\pingresult.txt ') do @set touch=%%i del %temp%\pingresult.txt if not defined touch ( :beep echo goto beep )