#!/bin/sh

DATE="/bin/date +%a %b %e"
DATE_OPTS= 

echo Content-type: text/plain
echo

echo Number of Requests today, so far:

if [ -x $DATE ]; then
	/bin/fgrep `$DATE` /usr/contrib/etc/httpd/logs/access_log | wc -l
else
	echo Cannot find date command on this system
fi
