Clean way to launch the web browser from shell script?

在 bash 脚本中,我需要启动用户 Web 浏览器。做到这一点的方法似乎有很多:

  • $BROWSER
  • xdg-open
  • GNOME 上的 gnome-open
  • www-browser
  • x-www-browser
  • ...

有没有一种比其他平台更标准的方法可以在大多数平台上使用,或者我应该这样做:

#/usr/bin/env bash


if [ -n $BROWSER ]; then
$BROWSER 'http://wwww.google.com'
elif which xdg-open > /dev/null; then
xdg-open 'http://wwww.google.com'
elif which gnome-open > /dev/null; then
gnome-open 'http://wwww.google.com'
# elif bla bla bla...
else
echo "Could not detect the web browser to use."
fi
110256 次浏览

你可以使用以下方法:

x-www-browser

It won't run the user's but rather the system's default X browser.

见: this thread.

xdg-open is standardized and should be available in most distributions.

Otherwise:

  1. eval是邪恶的,不要使用它。
  2. Quote your variables.
  3. 以正确的方式使用正确的测试操作符。

这里有一个例子:

#!/bin/bash
if which xdg-open > /dev/null
then
xdg-open URL
elif which gnome-open > /dev/null
then
gnome-open URL
fi

也许这个版本稍微好一点(还没有经过测试) :

#!/bin/bash
URL=$1
[[ -x $BROWSER ]] && exec "$BROWSER" "$URL"
path=$(which xdg-open || which gnome-open) && exec "$path" "$URL"
echo "Can't find browser"
python -mwebbrowser http://example.com

可以在很多平台上工作

OSX:

$ open -a /Applications/Safari.app http://www.google.com

或者

$ open -a /Applications/Firefox.app http://www.google.com

或者干脆。

$ open some_url

这可能不完全适用于您想要做的事情,但是有一种使用 http-server npm 包创建和启动服务器的非常简单的方法。

一旦安装(只有 npm install http-server -g) ,你可以把

http-server -o

在 bash 脚本中,它会从工作目录启动一个服务器,然后打开一个浏览器到该页面。

选择其他的答案,创建一个适用于所有主流操作系统的版本,并进行检查以确保 URL 作为运行时变量传入:

#!/bin/bash
if [ -z $1 ]; then
echo "Must run command with the url you want to visit."
exit 1
else
URL=$1
fi
[[ -x $BROWSER ]] && exec "$BROWSER" "$URL"
path=$(which xdg-open || which gnome-open) && exec "$path" "$URL"
if open -Ra "safari" ; then
echo "VERIFIED: 'Safari' is installed, opening browser..."
open -a safari "$URL"
else
echo "Can't find any browser"
fi