如何从shell脚本调用apple脚本。
我有一个shell脚本,我在xcode项目的Run Script阶段使用它。在执行此shell脚本之前,我想调用另一个苹果脚本?
答案 0 :(得分:2)
您可以使用osascript
实用程序。
以下是该实用程序的介绍,使用man osascript
:
OSASCRIPT(1) BSD General Commands Manual OSASCRIPT(1)
NAME
osascript -- execute AppleScripts and other OSA language scripts
SYNOPSIS
osascript [-l language] [-s flags] [-e statement | programfile] [argument ...]
DESCRIPTION
osascript executes the given script. It was designed for use with AppleScript,
but will work with any Open Scripting Architecture (OSA) language.
...
您可能也对osacompile
实用程序感兴趣。