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