#!/bin/sh

# execute:  create_qtr_stats infile
# this script creates the read log statistics for each source
# in the infile, where there is one source per line in infile.

DATA_FILE=/mit/bitbucket/wade/read.log

for X in `cat $1`
do
 echo ""
# change this line
 echo "*** Jul 1, 1993 thru Sep 30, 1993"
 echo "*** Provider source:" $X
# change this line
 readlog $X o "Jul 1, 1993" "Sep 30, 1993" < $DATA_FILE
done
