Windows 终端,在选项卡中启动两个命令

Windows terminal, start two commands in tabs

我想创建一个脚本,在 Windows 终端的两个不同选项卡中启动两个 shell 进程。有一个名为“new-tab”的参数,但我根本无法让它工作。

是否可以创建一个脚本,在两个不同的选项卡中打开 Windows 终端和 运行 两个控制台应用程序?

谢谢,

通过脚本,我希望你指的是批处理脚本,在这种情况下试试这个:

wt.exe -w 1 nt PowerShell -c node "sample.js"
wt.exe -w 1 nt PowerShell -c npm test

要更改选项卡的标题,请使用 --title 参数。

wt.exe --title MyCoolTab

可在此处查看可用命令行参数的完整列表:https://docs.microsoft.com/en-us/windows/terminal/command-line-arguments