定期刪除歸檔檔案的指令碼

tolywang發表於2011-07-11

ncrmastby$cat     /data/run/delarc.sh 


#!/bin/bash
DAYS=7
DIR=/data/apex/arch
EXT=".arc"


echo
echo "Start delarc `date`"

cd $DIR
for file in `find . -depth -mindepth 1 -name \*$EXT -mtime +$DAYS`
do
  echo "Deleting $file"
  rm -f $file
done

echo "Complete delarc `date`"

exit 0

 

 

 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-702709/,如需轉載,請註明出處,否則將追究法律責任。

相關文章