使用“ open -a Preview”全屏打开图像


8

使用osx 10.9.3

我想编写一个脚本,用预览全屏打开图像,但似乎找不到“预览”应用程序的命令行选项。

Answers:


8

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调用全屏。


很好,但是您可以将其设置为文件名的变量,这样就不必每次都手动完成
Ruskes

你的意思是f=$"somefile.png" ; open -a Preview $f ...
l'L'l
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.