如何在一个bash脚本中运行多个tell命令打开新窗口?

时间:2017-12-19 16:18:08

标签: bash command-line terminal applescript

我试过

#!/bin/bash
osascript -e '
  tell application "Terminal"
  do script "cd ~/www/service/code&& npm install && npm run dev"
  activate
  end tell

  tell application "Terminal"
  do script "cd ~/www/app-ui && npm install && npm start"
  activate
  end tell


'

什么也没发生,也没有错误。出了什么问题?

1 个答案:

答案 0 :(得分:1)

最简单的方法是为要在单独窗口中运行的每个部分创建单独的脚本。

#!/bin/sh

cat >scriptA <<EOF
#!/bin/sh
cd ~/www/service/code && npm install && npm run dev
EOF
chmod +x scriptA

cat >scriptB <<EOF
#!/bin/sh
cd ~/www/service/code && npm install && npm run dev
EOF
chmod +x scriptB

open -a Terminal.app scriptA
open -a Terminal.app scriptB