linux删除指定文件夹下7天之前的文件

#!/bin/bash
#删除指定目录下超过指定时间的文件
filepath1="/apps/temp_ma/SDO/"
filepath2="/apps/temp_ma/KFC/"
filepath3="/apps/sals/logs/"
declare filepath="$filepath1 $filepath2 $filepath3"
days=7
#删除过期的文件
function foreacedel2(){
echo "argument is:"$1;
find $1 -type f -mtime +$days|xargs rm -f;
}


function foreach(){
echo $filepath
for x in $filepath
do 
foreacedel2 $x;
done
}


foreach;
————————————————

原文链接:https://blog.csdn.net/kaka20099527/article/details/52311561

上一篇:Android 11 拍照问题


下一篇:云平台(一)