osx 10.9.3 사용
미리보기로 이미지를 전체 화면으로 여는 스크립트를 작성하고 싶지만 미리보기 응용 프로그램의 명령 행 옵션을 찾을 수 없습니다.
답변
Preview.app에는 명령 줄 옵션이 없지만 터미널에서 AppleScript를 사용할 수 있습니다.
open -a Preview somefile.png ; /usr/bin/osascript -e 'tell application "Preview"' -e "activate" -e 'tell application "System Events"' -e 'keystroke "f" using {control down, command down}' -e "end tell" -e "end tell"
somefile.png
원하는 경로 / 이미지로 바꾸십시오 . AppleScript는 전체 화면을 호출합니다.