जवाबों:
प्रीव्यू .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 ...
?