Wednesday, November 30, 2005

Script to remove old files


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:

No comments:

Post a Comment

Seamless Local Control: Integrating WeatherFlow with Home Assistant Across VLANs

I've been pleased with my Home Assistant setup for some time now. One of my main focuses has been achieving local control. This ensures...