#!/bin/sh
#
#  CachedMosaic - Runs NCSA Mosaic using a proxy host
#
#  Usage: CachedMosaic [Mosaic Arguements]
#
#  Darren Hardy, University of Colorado - Boulder, August 1994
#
#  $Id: CachedMosaic,v 1.1.4.1 1995/12/09 01:06:54 duane Exp $
#

#  set cachehost to the machine running the Harvest Object cache
cachehost=localhost
cacheport=3128

http_proxy="http://${cachehost}:${cacheport}/"; export http_proxy
ftp_proxy="http://${cachehost}:${cacheport}/"; export ftp_proxy
gopher_proxy="http://${cachehost}:${cacheport}/"; export gopher_proxy

exec Mosaic ${@+"$@"}
