Existe uma maneira de iniciar o ScreenSharing a partir do Terminal?

14

Como posso iniciar o ScreenSharing do OS X a partir da linha de comando e conectá-lo a um sistema especificado?

    
por Michael Prescott 02.12.2010 / 06:28

2 respostas

22
open vnc://server.address[:port]
    
por 02.12.2010 / 15:59
2

Se você tiver acesso a dispositivos auxiliares ativados nas Preferências do sistema, poderá tentar salvar o seguinte AppleScript no Editor AppleScript e executá-lo por meio da linha de comando:

tell application "Screen Sharing"
    activate # start Screen Sharing if not running yet
    tell application "System Events"
        keystroke "a" using command down # this will cause the address to clear
        keystroke "127.0.0.1" # replace with your host
        key code 36 # press enter
    end tell
end tell

Salvar como Sharing.scpt e executar como osascript /path/to/Sharing.scpt .

    
por 02.12.2010 / 13:38