锥体-在新窗口中启动多个命令

时间:2019-06-11 06:54:29

标签: conemu

我有以下 run.cmd 文件。这将运行2个脚本(Web服务器和监视脚本),并打开一个新控制台。都好。

如何运行所有这些脚本以在“新窗口” conemu界面中打开? 例如:如果我运行此 run.cmd 3次,则我应该有3个锥状窗口,每个窗口有3个标签页

//how to open first a "new conemu" window here? and then run the scripts in this new window?
start server.run.cmd -new_console:s
start watch.cmd -new_console:s
start cmd -new_console

1 个答案:

答案 0 :(得分:0)

您应该运行ConEmu64.exe -NoSingle

https://conemu.github.io/en/ConEmuArgs.html

例如,您可以做类似的事情

if "%~1" == "-new_window" goto do_run
start ConEmu64.exe -NoSingle -run "%~0" -new_window
goto :EOF
:do_run
ConEmuC /async /c server.run.cmd
cmd /c watch.cmd -new_console:s
cmd /c cmd -new_console