Files
libreoffice/shell/source/unix/misc/gnome-open-url.sh
2010-05-31 14:19:35 +01:00

7 lines
133 B
Bash

#!/bin/sh
# use xdg-open or gnome-open if available
xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || "$0.bin" $1
exit 0