open vnc://server.address[:port]
Como posso iniciar o ScreenSharing do OS X a partir da linha de comando e conectá-lo a um sistema especificado?
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
.
Tags mac terminal screen-sharing macos