如何从shell脚本调用Apple脚本?

时间:2012-08-29 23:33:32

标签: xcode shell applescript

如何从shell脚本调用apple脚本。

我有一个shell脚本,我在xcode项目的Run Script阶段使用它。在执行此shell脚本之前,我想调用另一个苹果脚本?

1 个答案:

答案 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实用程序感兴趣。