我需要applescript来运行tabset test命令来更改iTerm当前选项卡的名称。
-- Launch iTerm and log into multiple servers using SSH
tell application "iTerm"
activate
create window with default profile
set newWindow to (create window with default profile)
set Servers to paragraphs of (do shell script "/bin/cat $HOME/serverlist")
repeat with nextLine in Servers
if length of nextLine is greater than 0 then
tell current window
create tab with default profile
tell current session of newWindow
do shell script "export PATH='/usr/local/bin:$PATH'; tabset test "
end tell
end tell
end if
end repeat
tell first tab of current window
close
end tell
tell second window
close
end tell
end tell问题是tabset test不工作,并且没有任何错误提示。
可以通过npm install -g iterm2-tab-set安装tabset命令
发布于 2020-03-08 22:07:19
泰德·瑞格利是对的。我应该使用iTerm的write命令在窗口中键入文本。
https://stackoverflow.com/questions/60472288
复制相似问题