标题: 多个批处理放在一个批处理里如何自动全部执行
[打印本页]
作者: yrt11
时间: 2008-9-26 13:38
标题: 多个批处理放在一个批处理里如何自动全部执行
@echo
@echo off
call a.bat
call b.bat
call c.bat
call d.bat
call e.bat
call f.bat
@echo off
必须不断的按回车键才能执行完
作者: moniuming
时间: 2008-9-26 13:54
把那些暂停和需要回车的代码去掉试试?
作者: HAT
时间: 2008-9-26 16:32
@echo off
start a.bat
start b.bat
start c.bat
start d.bat
start e.bat
start f.bat