1
flyfire 2016-08-07 18:45:51 +08:00 via Android
apple script
|
3
taued 2016-08-07 22:20:00 +08:00 1
open -a /Applications/Google\ Chrome.app [$FILE_PATH]
-a application Specifies the application to use for opening the file -n Open a new instance of the application(s) even if one is already running. -g Do not bring the application to the foreground. 其他参数可以 man open 看一下 if has('gui') exec ":silent ! open -g -a \"Google Chrome\"" path else exec ":! open -g -a \"Google Chrome\"" path endif |
4
ynyounuo 2016-08-07 23:51:52 +08:00 1
看你题目的描述以为是需要这个答案:
按住 ⌘ 然后可以用鼠标操作别的窗口 结果进来发现答非所问了。 那,来都来了。 |
5
kingddc314 2016-08-08 00:22:11 +08:00 via Android
3L 说的对,:!open 就行了
|
6
fatestigma 2016-08-08 01:40:35 +08:00 1
3L 已经正解,对于 1L 说的 AppleScript ,可以用 `osascript -e 'tell app "Google Chrome" to activate'`。
|
8
sdjl OP @fatestigma 谢谢!这个也可以!
|