web-dev-qa-db-ja.com

ターミナルから画面共有を起動する方法はありますか?

コマンドラインからOSX画面共有を起動して、指定したシステムに接続するにはどうすればよいですか?

15
open vnc://server.address[:port]
24
Scott

システム環境設定でアクティブ化された支援デバイスにアクセスできる場合は、次のAppleScriptをAppleScript Editorに保存して、コマンドラインから実行してみてください。

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

Sharing.scptとして保存し、osascript /path/to/Sharing.scptとして実行します。

2
Daniel Beck