Monday, March 26, 2007

Implement a Sleep command in a batch file.

'Sleep.bat
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul


'Calleer.bat
call sleep 5

No comments: