如何在不打开终端的情况下启动可执行文件?

时间:2012-12-27 14:54:01

标签: macos applescript

我编写了一个简单的命令行可执行文件,每当我打开它的封闭文件夹时,我都会尝试启动它。我正在使用打开AppleScript的文件夹操作。到目前为止,AppleScript是:

    tell application "Finder"
        open document file "Feed the Beast Launcher" of folder "Feed The Beast" of folder "Desktop" of folder "Matthew" of folder "Users" of startup disk
    end tell

,可执行文件是:

    export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
    java -jar ~/Desktop/Feed\ The\ Beast/FTB_Launcher.jar

你能帮忙吗?

1 个答案:

答案 0 :(得分:0)

使用Jar Bundler.app创建jar文件的独立应用程序并使用类似

的内容
tell application "FTB_Launcher.app" to activate

启动应用。