jzsgyml 当前离线
五级士官
abc.exe 1111 >1.txt复制代码
abc.exe 2222 >2.txt复制代码
abc.exe 3333 >3.txt复制代码
find 当前离线
少将
@echo off for /l %%a in (1,1,10) do ( call %%a.bat )复制代码
TOP
find 发表于 2012-4-8 15:30
gawk 当前离线
powerbat 当前离线
大校
call :mutexLock abc.exe 1111 >1.txt call :mutexUnlock goto :eof goto :eof :mutexLock if not exist "%temp%\abc.lock" (cd.>"%temp%\abc.lock" & goto :eof) ping.exe -n 1 -w 1000 192.1 >nul & goto :lock goto :eof goto :eof :mutexUnlock del "%temp%\abc.lock" goto :eof复制代码
回复 jzsgyml 判断那一块,检查有几个cmd进程在运行可以不? gawk 发表于 2012-4-8 17:59
bat效率低而且精度差,最好用编程实现。 powerbat 发表于 2012-4-8 21:24