首页 > 解决方案 > 使用 osascript 脚本打开终端并运行 npm 命令

问题描述

我不太喜欢 max unix 命令。

我想要做的是打开两个不同的终端并在每个终端中运行 npm。

echo "Starting typescript build in new terminal.."

osascript -e  'npm run build'

sleep 3

echo "Starting firebase functions...."

osascript -e 'firebase emulators:start --only functions'

echo "Process compelete.. Check if there were two terminals window open"

这就是我写的,这就是我在终端中得到的

Starting typescript build in new terminal..
8:13: syntax error: Expected “given”, “with”, “without”, other parameter name, etc. but found identifier. (-2741)
Starting firebase functions....
0:18: syntax error: A identifier can’t go after this identifier. (-2740)
Process compelete.. Check if there were two terminals window open

有人可以帮我纠正我的 shell 脚本吗

标签: macosunixnpm

解决方案


像这样:

osascript -e 'tell application "Terminal" to do script "cd && npm run build"' &
osascript -e 'tell application "Terminal" to do script "cd && firebase emulators:start --only functions"' &

推荐阅读