我有以下2个蝙蝠文件:
1.bat
------
//a line which does something
pause
2.bat
------
//a line which does the other something
pause
现在,如何通过忽略暂停来在新的bat文件中运行这些bat文件?
答案 0 :(得分:14)
简单:删除PAUSE
!
但我认为,您对该问题的一个限制可能是,您无法移除pause
。
然后您可以使用重定向到被调用的批处理文件。
像
这样的东西call 1.bat < nul
call 2.bat < nul