I finally got around to writing a script to remove old files from dcc that were filling up my disk. The script was pretty simple.
#!/bin/sh
TIMELIMIT="+14"
LOGDIR=/var/dcc/log
DATE=`date +"%y%m%d"`
if [ -d $LOGDIR ]; then
find $LOGDIR -type f -name 'msg.*' -mtime $TIMELIMIT -exec rm {} \;
fi
Technorati Tags: system admin
No comments:
Post a Comment