我希望能够从命令行在浏览器中打开网站。到目前为止我还没有找到任何相关的东西。弹出的所有结果主要针对移动应用程序及其各自的开发语言。我希望能够做类似的事情:
curl <some flag or option> google.com
然后就会弹出 google.com 网页。这样的事情可能吗?
让我们收集一下默认浏览器打开 URL 的各种方式:
Ubuntu
sensible-browser google.com
或者
xdg-open google.com
。
这个问题也在这里得到了解答: https://askubuntu.com/questions/8252/how-to-launch-default-web-browser-from-the-terminal
Windows
start chrome https://www.google.com/
或 start firefox https://www.google.com/
在这里回答:https://stackoverflow.com/a/32775952/3717691
MacOS
open "google.com"