如何使用 URL "localhost:3000" 从终端打开 Google Chrome?
How can I open Google Chrome from the terminal with the URL "localhost:3000"?
每当我尝试用 URL "localhost:3000" 打开 Google Chrome 时,它就会出错,只会打开一个没有 URL 的空白标签。经过一些测试后,我发现是“:”搞砸了。这有效:
$ google-chrome www.gmail.com
但这不起作用
$ google-chrome localhost:3000
也不是这个
$ google-chrome "localhost:3000"
如何用这个 URL 打开 Google Chrome?
我正在使用 Ubuntu、bash 脚本和 gnome 终端。
你试过了吗?
google-chrome http://localhost:3000
我好像没有这个问题。
chromium "http://localhost:8889"
chromium "http://127.0.0.1:8889"
一个快速的建议是检查 127.0.0.1:3000
是否有效(较新版本的 ubuntu 似乎在解析“本地主机”而不是编号的 IP 地址时遇到问题。)
收到以下消息:
zsh(or bash): command not found: google-chrome (or chromium-browser)
解决了我的问题:
open http://localhost:3000
{ 我使用 Google Chrome 作为默认浏览器 }
如@Bexultan Myrzatayev 所说,如果 google chrome 是您的默认浏览器,只需
open http://localhost:8000
这对我有用:
open -a "Google Chrome" http:localhost:3000
每当我尝试用 URL "localhost:3000" 打开 Google Chrome 时,它就会出错,只会打开一个没有 URL 的空白标签。经过一些测试后,我发现是“:”搞砸了。这有效:
$ google-chrome www.gmail.com
但这不起作用
$ google-chrome localhost:3000
也不是这个
$ google-chrome "localhost:3000"
如何用这个 URL 打开 Google Chrome? 我正在使用 Ubuntu、bash 脚本和 gnome 终端。
你试过了吗?
google-chrome http://localhost:3000
我好像没有这个问题。
chromium "http://localhost:8889"
chromium "http://127.0.0.1:8889"
一个快速的建议是检查 127.0.0.1:3000
是否有效(较新版本的 ubuntu 似乎在解析“本地主机”而不是编号的 IP 地址时遇到问题。)
收到以下消息:
zsh(or bash): command not found: google-chrome (or chromium-browser)
解决了我的问题:
open http://localhost:3000
{ 我使用 Google Chrome 作为默认浏览器 }
如@Bexultan Myrzatayev 所说,如果 google chrome 是您的默认浏览器,只需
open http://localhost:8000
这对我有用:
open -a "Google Chrome" http:localhost:3000