
CODE: [Copy to clipboard]@echo off
set string=我是一个中国人
set delay=1
call :show "%delay%" "%string%"
pause>nul
:show
set /a del=%1+1
set str=%~2
:loop
if "%str%"=="" goto :eof
set /p =%str:~0,1%<nul
set str=%str:~1%
ping -n %del% 127.1 >nul
goto :loop
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |