08/06/05 18:41:34 wBw/Rao8
>>740
set /a n=0
for /f "delims=" %%I in (list.txt) do call :run %%I
goto :eof
:run
for /f "skip=3 delims=" %%J in ('dir /b executing.*') do (
sleep 5
goto :run
)
set /a n+=1
type nul >executing.%n%
start cmd /c " %1 & del executing.%n%"
goto :eof