Re oilio:
基本上是这样的,但是这样的延迟不是很准确,要达到准确的延迟,需要用VBS或者其它的工具来实现,比如sleep.exe命令。
兄可以自己写一个测试ping命令延迟的脚本,来了解它的延迟精度,比如这样:
@echo off
:start_ping
set /p time_ping=请输入要延迟的秒数:
set /a time_ping+=1
echo 1-------%time%
ping 127.1 -n %time_ping% >nul 2>nul
echo 2-------%time%
pause&cls&goto start_ping
Last edited by lxmxn on 2007-3-20 at 01:45 PM ]
Re oilio:
Basically, it's like this, but this kind of delay is not very accurate. To achieve accurate delay, you need to use VBS or other tools to implement it, such as the sleep.exe command.
Brother can write a test script for pinging command delay by himself to understand its delay precision, for example:
@echo off
:start_ping
set /p time_ping=Please enter the number of seconds to delay:
set /a time_ping+=1
echo 1-------%time%
ping 127.1 -n %time_ping% >nul 2>nul
echo 2-------%time%
pause&cls&goto start_ping
Last edited by lxmxn on 2007-3-20 at 01:45 PM ]