#!/bin/sh
#
-# $Id: RunCache.in,v 1.2 1996/04/16 05:23:05 wessels Exp $
+# $Id: RunCache.in,v 1.3 1996/04/16 05:48:20 wessels Exp $
PATH=@prefix@/bin:/bin
export PATH
failcount=0
while test 1 ; do
- echo "Running: cached -s $conf >> cached.out 2>&1"
+ echo "Running: squid -s $conf >> squid.out 2>&1"
start=`date '+%d%H%M%S'`
- cached -s $conf >> cached.out 2>&1
+ squid -s $conf >> squid.out 2>&1
stop=`date '+%d%H%M%S'`
t=`expr $stop - $start`
if test 0 -le $t -a $t -lt 5 ; then