1*48636Sbostic#!/bin/csh -f
2*48636Sbostic#
3*48636Sbostic# Once a week, produce a report and mail to people
4*48636Sbostic#
5*48636Sbosticset people=( postmaster usenet )
6*48636Sbosticset spooldir=/usr/spool/uucp
7*48636Sbosticset archdir=uucplog.archives
8*48636Sbostic
9*48636Sbosticcd $spooldir/$archdir
10*48636Sbosticnice +5 awk -f /usr/lib/uucp/sys_awk SYSLOG.[0-6] >& weekly_report
11*48636SbosticMail -s "Weekly UUCP Report" $people < weekly_report
12