답변:
이것이 올바른 방법입니다.
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
일을해야합니다.