识字粗堪供赋役,不须辛苦慕公卿。这篇文章主要讲述命令行 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 telltell 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】
推荐阅读
- 如何修复Windows 10蓝屏错误(解决办法分步教程)
- app的创建和注册
- 常见Failed to load ApplicationContext异常解决方案!!
- spring ApplicationContext中Bean的生命周期
- 蓝牙ble数据转语音实现Android AudioRecord方法推荐
- Appium中使用相对路径定位元素Xputh
- 不通过百川打开淘宝app
- Consider defining a bean of type 'com.lvjing.dao.DeviceStatusMapper' in your configuration.(
- Android控制双击返回按钮退出程序的代码