In a bash script, I need to launch the user web browser. There seems to be many ways of doing this:

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

Is there a more-standard-than-the-others way to do this that would work on most platforms, or should I just go with something like this:

#/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
link|improve this question

Your solution seems fine to me – Jamie Wong Jun 26 '10 at 16:19
Yep, although I'd swap xdg-open and gnome-open – ninjalj Jun 26 '10 at 16:27
1  
Be careful about your URLs. It's easy to get a character like ? or & in there that need to be quoted. – Gabe Jun 26 '10 at 16:35
You should be able to drop the eval (it's a security risk): $BROWSER http://wwww.google.com – Dennis Williamson Jun 26 '10 at 16:35
Question edited. – Julien Nicoulaud Jun 26 '10 at 17:03
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

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

Otherwise:

  1. eval is evil, don't use it.
  2. Quote your variables.
  3. Use the correct test operators in the correct way.

Here is an example:

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

Maybe this version is slightly better (still untested):

#!/bin/bash
URL=$1
[[ -x $BROWSER ]] && exec "$BROWSER" "$URL"
path=$(which xdg-open || which gnome-open) && exec "$path" "$URL"
echo "Can't find browser"
link|improve this answer
One thing: don't redirect which STDERR, just STDOUT. – Julien Nicoulaud Jun 26 '10 at 17:09
Oh yes, of course. Thanks. (First I'd have liked to use the -s option, but that doesn't seem to exist on Linux.) – Philipp Jun 26 '10 at 17:29
feedback
python -mwebbrowser http://example.com

works on many platforms

link|improve this answer
If the user has Python installed... But thanks for mentioning the webbrowser module ! – Julien Nicoulaud Jun 26 '10 at 17:41
feedback

You could use the following:

x-www-browser

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

See: this thread.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.