这段时间小编经常在帮忙打包服务器上的APK包,每一次手动的RM操作都太麻烦了,所以武林技术频道小编编写了一个脚本,这个脚本可以根据上次修改时间和指定目录中的通配符匹配批量删除,一起进入下文学习一下吧!
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
以上就是关于服务器自动删除文件的脚本内容,大家学习到了多少呢?如果你还想了解更加专业的技术知识,你可以来武林技术频道的网站具体了解哦。
新闻热点
疑难解答
图片精选