如何在 Visual Studio Code 中运行多个终端命令?

如何在 Visual Studio Code 中运行多个终端命令?

我想依次运行以下命令:

npm run build
git add build/
git commit -m "Latest version of build"
git push
firebase deploy

在 Visual Studio Code 终端窗口中。我该怎么做?复制/粘贴确实有效,但也许我可以创建一个脚本或类似的东西?

我已经尝试创建一个“.bat”文件,但只执行第一个命令。“.sh”和“.cmd”也不起作用。

答案1

一个快速而粗略的解决方案是将所有内容放在一行中,通过使用以下命令分隔命令&&

npm run build && git add build/ && git commit -m "Latest version of build" && git push && firebase deploy

对于更复杂的解决方案,请参阅:

相关内容