在命令行下用applescript显示图形界面

#!/bin/bash

/usr/bin/osascript <<-EOF

    tell application "System Events"
        activate
        display dialog "Hello world"
    end tell

EOF

你可能感兴趣的:(在命令行下用applescript显示图形界面)