コマンドラインからOS XのScreenSharingを起動し、指定されたシステムに接続するにはどうすればよいですか?
コマンドラインからOS XのScreenSharingを起動し、指定されたシステムに接続するにはどうすればよいですか?
回答:
open vnc://server.address[:port]
open vnc://user@server:port
また、有用であり、セキュリティがあなたのパスワードを持つに関連するリスクはありませんが、プロセスのリストに表示
man open
今日はタイプするつもりはなかった。多くのことができます。
vnc://user:password@server:port
システム環境設定で支援デバイスにアクセスできる場合は、AppleScript Editorで次のAppleScriptを保存し、コマンドラインから実行できます。
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
ます。