#!/bin/sh

cd /var/log
for LOG in wwwcount.log
do
   if [ -f $LOG ]; then
      savelog -g www-data -m 620 -u root -c 4 $LOG >/dev/null
   fi
done
