Antworten:
Preview.app verfügt nicht über Befehlszeilenoptionen, Sie können jedoch AppleScript in Terminal verwenden:
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"
Ersetzen somefile.png
Sie einfach durch den gewünschten Pfad / das gewünschte Bild. AppleScript ruft den Vollbildmodus auf.
f=$"somefile.png" ; open -a Preview $f ...
?