#!/bin/bash # .htmlviewrc, written by L. David Baron, 2003 # To be sourced by RedHat 8's /usr/bin/htmlview # In the Public Domain. MOZILLA=/builds/trunk/obj/opt/dist/bin/mozilla PROFILE=dbaron HOMEPAGE=http://dbaron.org/home URL=$1 if [ -z "$URL" ] then URL=$HOMEPAGE fi if $MOZILLA -remote "ping()" >& /dev/null then exec $MOZILLA -remote "openURL($URL,new-window)" else $MOZILLA -P $PROFILE $URL >& /dev/null & exec echo fi