AppleScript를 통한 터미널 열기 too

터미널을 열기 위해 스파크에서 바로 가기 스크립트를 작성하려고합니다.

on run {input, parameters}

  tell application "Utilities/Terminal" // tried Utilities:Terminal and Terminal too
    reopen
    activate
  end tell

end run

이 작업을 어떻게 수행 할 수 있습니까? OSX 버전으로 10.10.2를 사용하고 있습니다.



답변

이것이 올바른 방법입니다.

tell application "Terminal"
    if not (exists window 1) then reopen
    activate
    -- insert your code here
end tell

편집 당신은 do 스크립트로 새 창을 열 수 있습니다

tell application "Terminal"
    do script ""
end tell


답변

tell application "Terminal"
   activate
  tell application "System Events" to keystroke "n" using {command down}
end tell

일을해야합니다.


답변