コマンドラインからOSX画面共有を起動して、指定したシステムに接続するにはどうすればよいですか?
open vnc://server.address[:port]
システム環境設定でアクティブ化された支援デバイスにアクセスできる場合は、次の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
として実行します。