Error en un script simple para abrir una nueva pestaña

3

Estoy intentando ejecutar un script simple que simplemente abre una nueva pestaña, pero obtengo
execution error: An error of type -10810 has occurred. (-10810)
Estoy corriendo en Yosemite.

Este es el script:

#!/usr/bin/osascript

tell application "Terminal"
    activate
    tell application "System Events" to keystroke "t" using command down
    delay 2 
end tell
    
pregunta LK__ 09.02.2015 - 09:25

1 respuesta

1

Prueba esto:

tell application "Terminal"
    if not (exists window 1) then
        reopen
    else
        do script ""
    end if
end tell
    
respondido por el adayzdone 09.02.2015 - 17:55

Lea otras preguntas en las etiquetas