iterm2 升级后打不开配置文件

iterm2 after upgrade does not open up profiles

我希望能够在命令提示符下键入 it2 myMachine 并弹出一个新会话,其中包含 Iterm2 中该配置文件的默认值。

以下内容在升级之前一直有效,其中 $1 是配置文件名称...

osascript <<ENDSCRIPT
on run argv
  tell application "iTerm"
    activate
    tell the first terminal
      launch session ""
    end tell
  end tell
end run
ENDSCRIPT

71:79:语法错误:应为 class 名称,但找到了标识符。 (-2741)

我也在看 bash 中的直接 osascript。但是新标签没有得到命令。

osascript -e "tell application \"Terminal\""
     -e "tell application \"System Events\" to keystroke \"t\" using {command down}" 
 -e "do script \"cd $pwd; clear\" in front window"  
 -e  "end tell"

我在 iterm2 帮助页面上找到了所有... tell application "iTerm2" tell current window create tab with default profile end tell end tell 有许多标准的 Applescript 函数(例如,获取window 的大小和位置),此处未记录。使用默认配置文件创建选项卡 使用配置文件创建选项卡 "name"