#!/bin/sh
# cherche un navigateur web ...
for browser in dillo konqueror epiphany MozillaFirebird mozilla netscape
do
  TESTB=`which ${browser}`
  if [ -x "${TESTB}" ]; then
    ${TESTB} ${1}
    exit
  fi
done

echo "Sorry, no browser found"