Applescript打开终端窗口而不需要〜/ .bash_profile

时间:2013-05-27 09:39:43

标签: macos applescript

我正在尝试使用Platypus为OSX 10.8上的交互式命令行程序创建应用程序启动器。我希望能够双击我的应用程序,打开终端窗口,运行我的程序。问题是我的Applescript(从Octave借来,适用于Julia)启动了一个终端窗口,并尝试向其中吐出一些命令,但是我有一个相当沉重的~/.bash_profile干扰了这个。有没有办法让我的Applescript打开一个非登录shell,或者不是来源~/.bash_profile等?

以下是Platypus运行的脚本:

# This is the startup procedure written as AppleScript to open a
# Terminal.app (if the Terminal.app is not already running) and start
# the Julia program.
# 20071007 removed: open -a /Applications/Utilities/Terminal.app
osascript 2>&1>/dev/null <<EOF
  tell application "System Events" to set ProcessList to get name of every process
  tell application "Terminal"
    activate
    if (ProcessList contains "Terminal") or ((count of every window) is less than 1) then
      tell application "System Events" to tell process "Terminal" to keystroke "n" using command down
    end if
    do script ("exec bash -c \"PATH=${ROOT}/julia/bin:${PATH} OPENBLAS_NUM_THREADS=1 FONTCONFIG_PATH=${ROOT}/julia/etc/fonts GIT_EXEC_PATH=${ROOT}/julia/libexec/git-core GIT_TEMPLATE_DIR=${ROOT}/julia/share/git-core exec '${ROOT}/julia/bin/julia'\"") in front window
  end tell
EOF

# Quit the Julia.application immediately after startup (ie. quitting
# it in the taskbar) because once it is started it cannot be restarted
# a second time. If Julia.app stays (eg. because of a crash) opened
# then restarting is not possible.
osascript 2>&1>/dev/null <<EOF
  tell application "julia"
    quit
  end tell
EOF

1 个答案:

答案 0 :(得分:0)

通常,您不需要终端窗口来执行命令行内容。如果您需要手动输入信息,则只能使用终端。所以你可以在终端窗口中使用“do shell script”而不是“do script”运行命令。请注意,这样做不会使用您的bash配置文件。所以在applescript中单独尝试这个命令......

do shell script ("exec bash -c \"PATH=${ROOT}/julia/bin:${PATH} OPENBLAS_NUM_THREADS=1 FONTCONFIG_PATH=${ROOT}/julia/etc/fonts GIT_EXEC_PATH=${ROOT}/julia/libexec/git-core GIT_TEMPLATE_DIR=${ROOT}/julia/share/git-core exec '${ROOT}/julia/bin/julia'\"")

然后您可以根据需要添加其他AppleScript命令,只是不要使用终端,因此不会使用您的bash配置文件。