#!/bin/sh if [ -x /usr/bin/epiphany ]; then exec epiphany "$@" elif [ -x /usr/bin/iceweasel ]; then exec iceweasel "$@" elif [ -x /usr/bin/firefox ]; then exec firefox "$@" elif [ -x /usr/bin/seamonkey ]; then exec seamonkey "$@" elif [ -x /usr/bin/opera ]; then exec opera "$@" elif [ -x /usr/bin/skipstone ]; then exec skipstone "$@" elif [ -x /usr/bin/midori ]; then exec midori "$@" fi