回复 16# hlzj88
是说用新的bat来专门管理.不是让各自的bat来
管理bat- @echo off
- set b=1
- set "ph1=wjj1"
- set "ph2=wjj2"
- set "ph3=wjj3"
- start "%ph1%\aaa.bat"
- start "%ph2%\aaa.bat"
- start "%ph3%\aaa.bat"
- :a
- cd.>"%ph1%\标志.ini"
- call set a=%%b%%
- goto :b
- :b
- if exist "%ph1%\标志.ini" goto :b
- cd.>"%ph2%\标志.ini"
- call set a=%%b%%
- goto :c
- :c
- if exist "%ph2%\标志.ini" goto :c
- cd.>"%ph3%\标志.ini"
- call set a=%%b%%
- goto :d
- :d
- call set a=%%b%%
- if exist "%ph3%\标志.ini" goto :d
- goto :a
复制代码 aaa.bat- @echo off
- :ks
- copy /y 1.html 2.html
- if not exist ..\标志.ini goto ks
- htox32c /IP /O0 /U1+4 2.html
- del /q 2.html
- del /q ..\标志.ini
- echo 其他语句
- if exist *.html goto ks
复制代码
|