home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep 4.2
/
Openstep-4.2-Intel-User.iso
/
usr
/
template
/
client
/
adm
/
weekly
< prev
Wrap
Text File
|
1995-11-17
|
501b
|
30 lines
#
# /usr/adm/weekly
#
# This /bin/sh script is run once a week by cron. Put any housekeeping
# commands in here, like pruning of log files
#
# Trim the /usr/adm logfiles
cd /usr/adm
for i in hourly.log daily.log weekly.log monthly.log lpd-errs aculog
do
if [ -r $i ]
then
cp -p $i $i.old
/usr/ucb/tail -200 $i.old > $i
fi
done
# Trim the /usr/spool/uucp logfiles
cd /usr/spool/uucp
for i in Stats Log Debug
do
if [ -r $i ]
then
cp -p $i $i.old
/usr/ucb/tail -200 $i.old > $i
fi
done