shell脚本汇总 2 删除创建时间超过32天的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本汇总 2 删除创建时间超过32天的文件相关的知识,希望对你有一定的参考价值。

shell脚本汇总 2 删除创建时间超过32天的文件


#!/bin/bash
#date:2017-04-11
#version:clear_ballcloud_back_v1.0
#contents: removing the  /www/web/ballcloud_bakck/* , if the file is created above 32 day
#

cd /www/web

#sum the size of already delete directory

dirsize=`du -s backup_ballcloud | awk ‘{print $1 }‘ `

#
#define the ready to del directory
#

maxsize=$((20000))

cleardir="/www/web/backup_ballcloud"

echo -e "Allowd maxsize:$maxsize \n" ;


#
# delete all of /www/web/ballcloud_back/*
#


 if [ $dirsize -gt $maxsize ];then

	cd $cleardir && find .  -mtime +32 -type d | xargs rm -rf  &> /dev/null;
 fi

 
#
#Defin emptyFolder= `ls /www/web/backup_ballcloud | wc -l `
#

emptyFolder=` ls /www/web/backup_ballcloud | wc -l `

if [ $emptyFolder -gt 0 ];then

	 cd $cleardir && find . -mtime +32 -type d | xargs  rm -rf  &> /dev/null;
fi


#

本文出自 “Frog的技术归档” 博客,请务必保留此出处http://frogtwo.blog.51cto.com/3805708/1937267

以上是关于shell脚本汇总 2 删除创建时间超过32天的文件的主要内容,如果未能解决你的问题,请参考以下文章

删除超过 7 天的文件

删除超过10天的数据

bash脚本通过每天保留1个备份来删除超过7天的备份[重复]

自动从 Google 共享驱动器中删除超过 X 天的文件?

学透shell 带你写常用的100个 shell 脚本(一)定时删除过期文件

MySQL 版本 5.5.37:使用 CURSOR 删除超过 30 天的表