命令行 apple script 操控 iTerm2
Posted 白桂任的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命令行 apple script 操控 iTerm2相关的知识,希望对你有一定的参考价值。
AppleScript 是什么?
AppleScript 是 macOS 下可用于操控其他软件的脚本语言。
参考链接:https://www.iterm2.com/documentation-scripting.html
下面的命令:打开 iterm2, 并且 运行命令 "tail -f /Users/ruby/index.html",然后进入全屏模式
tell application "iTerm" activate create window with default profile command "tail -f /Users/ruby/index.html" end tell tell application "System Events" tell process "iTerm2" key down command keystroke return key up command end tell end tell
把上面的代码保存为 xx.scpt 文件,双击打开后,如下,点击上面第三个按钮即可运行:
另外,使用这个特性需要修改一下系统设置:打开 System Preference -> Privacy -> Accessibility -> 勾选上 "Script Editor", 如果没有这个则点 "+" 在 /Applications/Utility 里面选择
系统样例(打开 Script Editor 然后看右上角)
其他资料:
AppleScript 官方文档:https://www.iterm2.com/documentation-scripting.html
以上是关于命令行 apple script 操控 iTerm2的主要内容,如果未能解决你的问题,请参考以下文章