#!/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.4 1995/02/15 18:54:38 hardy Exp $
#

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

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

exec Mosaic $*
