在终端 mac os x 上执行快捷方式

在终端 mac os x 上执行快捷方式

我在另一台 Mac 上有一个应用程序,该软件仍然打开,有允许执行任务的键盘快捷键,我想通过我的 Mac 上的终端执行快捷方式。

答案1

您可以使用 applescript。例如,如果它是 TextEdit;

编辑文件command并输入
tell application "TextEdit" activate tell application "System Events" keystroke "f" using {command down} end tell end tell

然后运行 osascript command

相关内容