欢迎来到代码驿站!

perl

当前位置:首页 > 脚本语言 > perl

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

时间:2021-09-10 10:15:31|栏目:perl|点击:

支持匹配路径 匹配文件名  多久没有访问的自动清理

复制代码 代码如下:

#用于各系统清理文件脚本,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

上一篇:基于charles抓取https请求使用过程解析

栏    目:perl

下一篇:perl跳过首行读取文件的实现代码

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

本文地址:http://www.codeinn.net/misctech/174093.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有