服务器自动删除文件的脚本

来源:爱站网时间:2019-05-29编辑:网友分享
这段时间小编经常在帮忙打包服务器上的APK包,每一次手动的RM操作都太麻烦了,所以爱站技术频道小编编写了一个脚本,这个脚本可以根据上次修改时间和指定目录中的通配符匹配批量删除,一起进入下文学习一下吧!

这段时间小编经常在帮忙打包服务器上的APK包,每一次手动的RM操作都太麻烦了,所以爱站技术频道小编编写了一个脚本,这个脚本可以根据上次修改时间和指定目录中的通配符匹配批量删除,一起进入下文学习一下吧!

 

#用于各系统清理文件脚本,filepath  reg_filename fileatime
#author Foyon0806@gmail.com
#date   2013-8-22 14:51:52
#!/bin/sh

 

if [ $# -eq 0 ];then
    echo "Usage: sh auto_clear_file.sh clear_filepath clear_regfilename filecreatetime"
    echo "eg: sh auto_clear_file.sh /tmp/log/  user_log -7day"
    exit
fi

filepath=$1
regfilename=$2


if [ "-$3" = "-" ];then
    filectime=`date -d -7day '+ %s'`
else
    filectime=`date -d $3 '+ %s'`
fi

log=`ls $filepath | grep $regfilename`
echo $log

for file in ${log}
do
    echo $file
    fileatime=`stat -c %X ${filepath}${file}`

    if [ ${fileatime} -lt ${filectime} ]; then
        opt=`rm -f ${filepath}${file}`
        echo $opt
    fi 
done

以上就是关于服务器自动删除文件的脚本内容,大家学习到了多少呢?如果你还想了解更加专业的技术知识,你可以来爱站技术频道的网站具体了解哦。

上一篇:实例演示Perl使用nginx FastCGI环境做WEB开发的方法

下一篇:Perl中的正则表达式介绍

您可能感兴趣的文章

相关阅读

查看更多 >

热门软件源码

最新软件源码下载