Answers:
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 ...
?