从Shell可执行文件打开并显示Chrome

时间:2019-03-29 04:43:24

标签: bash shell ubuntu-18.04

我想用Chrome打开位于变量(“ URL”)中的URL。 我有以下代码:

$nohup google-chrome --no-sandbox $URL &

问题是此代码使用--no-sandbox使得Chrome在我尝试再次打开后崩溃。

1 个答案:

答案 0 :(得分:0)

xargs bash -c 'nohup  google-chrome --no-sandbox $@ &' null  < tabs.txt

带有这样的测试文件:

$ cat tabs.txt                                         
https://stackoverflow.com
unix.stackexchange.com

方法2

如果您的浏览器是chrome且脚本openurl是

#!/bin/bash
chrome "$1"

运行方式

./openurl "https://stackoverflow.com"

注意: 用浏览器替换Chrome

方法3

xdg-settings set default-web-browser chromium-browser.desktop

xdg-settings set default-web-browser chromium-browser.desktop

然后

xdg-open https://stackoverflow.com