Câu trả lời:
Preview.app không có tùy chọn dòng lệnh, nhưng bạn có thể sử dụng AppleScript trong Terminal:
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"
Chỉ cần thay thế somefile.png
bằng đường dẫn / hình ảnh bạn muốn; AppleScript gọi toàn màn hình.
f=$"somefile.png" ; open -a Preview $f ...
sao