【发布时间】:2020-02-11 23:11:07
【问题描述】:
我想运行一个在三个独立终端中运行三个命令的命令。我已经看到了很多关于如何在 Linux 和 OSX 中实现这一点的答案,但对于 Windows 却没有。
第一个命令(dotnet):
x: && cd folder-1\folder-2 && cd MyGame\src\MyGame.Api && dotnet restore --interactive && dotnet run
第二条命令(节点):
x: && cd folder-1\folder-2 && cd client && npm install && npm run start
第三条命令(git):
x: && cd folder-1\folder-2 && git checkout master && git pull
【问题讨论】:
标签: windows command-line command-prompt