简体   繁体   English

如何在批处理文件中并行运行指令/命令?

[英]How to run Instructions/Commands in a Batch File in parallel?

How to run Instructions/Commands in a Batch File in parallel ? 如何在批处理文件中并行运行指令/命令?

Contents Inside Batch File: Each Line Calls a Process 批处理文件中的内容:每行调用一个进程

Eg 例如

StartMyDay.Bat StartMyDay.Bat

call devenv.exe
call chrome.exe
call communicator.exe
call VirtualBox.exe

Use the start command, but add the paths to the files if needed. 使用start命令,但是如果需要,将路径添加到文件中。

start "" devenv.exe
start "" chrome.exe
start "" communicator.exe
start "" VirtualBox.exe

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM