运行多个bat文件,其中包含“暂停”

时间:2012-09-28 09:52:34

标签: windows batch-file

我有以下2个蝙蝠文件:

1.bat
------
//a line which does something
pause

2.bat
------
//a line which does the other something
pause

现在,如何通过忽略暂停来在新的bat文件中运行这些bat文件?

1 个答案:

答案 0 :(得分:14)

简单:删除PAUSE

但我认为,您对该问题的一个限制可能是,您无法移除pause

然后您可以使用重定向到被调用的批处理文件。

这样的东西
call 1.bat < nul
call 2.bat < nul