我想用Chrome打开位于变量(“ URL”)中的URL。 我有以下代码:
$nohup google-chrome --no-sandbox $URL &
问题是此代码使用--no-sandbox使得Chrome在我尝试再次打开后崩溃。
答案 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