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

Unlock Seamless Remote Access: The Power of Split DNS with Tailscale

 As a remote worker or someone who frequently collaborates with others on different networks, you're likely familiar with the challenges...