xref: /AOO41X/main/shell/source/unix/misc/gnome-open-url.sh (revision 27b2fc91b67b282ef25e5c8fc07f05afd8a62640)
1#!/bin/sh
2
3# use xdg-open or gnome-open if available
4xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || "$0.bin" $1
5
6exit 0
7