Yanıtlar:
Preview.app'ın komut satırı seçenekleri yoktur, ancak Terminal'de AppleScript'i kullanabilirsiniz:
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"
Sadece somefile.png
istediğiniz yol / görüntü ile değiştirin ; AppleScript tam ekranı açar.
f=$"somefile.png" ; open -a Preview $f ...
mı?