#!/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.5 1995/04/12 23:21:29 wessels 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 $*
