답변:
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는 전체 화면을 호출합니다.
f=$"somefile.png" ; open -a Preview $f ...
하는가?