可以使用start或者call来调用其他批处理,区别如下:
例如在bat1中使用start或者call来调用bat2
call 调用后不会返回,直到bat2结束,继续执行bat1中call之后的语句;
start会立即返回,无论bat2结束与否,然后运行bat1中start之后的语句.
另外,如果使用start要调用需要参数的exe时注意,并非简单的
start "exe" parameter因为此时start需要一个字符串来指定窗口标题,因此使用
start "" "exe" parameter但是如果exe不带参数,直接
start "exe"即可.
No comments :
Post a Comment