【发布时间】:2020-06-26 00:55:45
【问题描述】:
我不太会使用 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 脚本吗
【问题讨论】: