답변:
open vnc://server.address[:port]
open vnc://user@server:port
또한 유용하며 프로세스 목록에 비밀번호를 표시하는 것과 관련된 보안 위험이 없습니다
man open
오늘 전에 타이핑을 생각하지 않았습니다 . 많은 일을 할 수 있습니다.
vnc://user:password@server:port
시스템 환경 설정에서 활성화 된 보조 장비에 접근 할 수 있다면, AppleScript 편집기에 다음 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
.