Linux: command to open URL in default browser
on ubuntu you can try gnome-open.
$ gnome-open http://www.google.com
The most cross-distribution one is xdg-open http://stackoverflow.com
I believe the simplest method would be to use Python:
python -m webbrowser "http://www.example.com/"