Archive for the ‘AppleScript’ Category

  1. Hello, AppleScript World!

    Posted on 1月 30th, 2012 by cx20

    AppleScript

    AppleScript は Mac OS の OSA(Open Scripting Architecture)に準拠したオブジェクト指向スクリプト言語である。

    ソースコード

    #!/usr/bin/osascript
    tell application "Finder"
        "Hello, AppleScript World!"
    end tell

    実行方法(スクリプトファイルを指定して実行)

    $ osascript ./hello.applescript

    実行方法(実行権限を付与して実行)

    $ chmod +x ./hello.applescript
    $ ./hello.applescript

    コンパイル&実行方法

    $ osacompile -o hello.scpt hello.applescript
    $ osascript ./hello.scpt

    実行結果

    Hello, AppleScript World!