如何从终端打开浏览器


Answers:


52

只需输入

open "http://www.google.com"

它将在您的默认浏览器中打开


9
open -a“ Firefox”“ superuser.com ”将在您指定的任何其他应用程序中打开链接。
kubi

11

要使OS X机器将默认浏览器打开到特定页面,您只需键入:

open http://example.com/

简单如馅饼。该open命令最早是在NeXT操作系统上引入的,在其现代版本中,它使用LaunchServices确定打开给定文件或URL的适当应用程序。


5

我只是用

open -a safari

打开浏览器(此处以safari为例)。


“打开指定的应用程序”open -a立场。它不区分大小写,因此您可以像

open -a finder

等等


1

如果您只想打开浏览器而不使用URL,请仅使用带有浏览器名称的open:

打开/Applications/Safari.app

打开/Applications/Firefox.app

等等

您可以使用open通过名称打开任何应用程序。


1

如果用于打开HTML文件的默认应用程序已更改为文本编辑器,open test.html则将在编辑器中打开文件。

您可以使用在默认浏览器中将其打开open test.html -a "$(VERSIONER_PERL_PREFER_32_BIT=true perl -MMac::InternetConfig -le 'print +(GetICHelper "http")[1]')"

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.