码迷,mamicode.com
首页 > 系统相关 > 详细

linux下删除3分钟之前指定文件夹下的指定类型文件

时间:2014-09-18 09:38:33      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:ar   文件   div   art   sp   log   on   c   linux   

#!/bin/sh
DELDIR="/root/crontab_test/test"
 
#3 minute ago
DELTIME="-mmin +3"
 
#delete file type
FILETYPE1="‘*.txt‘"
FILETYPE2="‘*.log‘"
 
 
#write to tmp file
rm crontab_del_3min -f
touch crontab_del_3min
 
# every minute delete *.txt file 3 minutes ago
echo \* \* \* \* \* find $DELDIR $DELTIME -name $FILETYPE1 -exec rm -f {} \\\; >> crontab_del_3min
# every minute delete *.log file 3 minutes ago
echo \* \* \* \* \* find $DELDIR $DELTIME -name $FILETYPE2 -exec rm -f {} \\\; >> crontab_del_3min
 
 
#write to crontab
crontab crontab_del_3min
 
#start to crontab
/etc/init.d/crond restart

linux下删除3分钟之前指定文件夹下的指定类型文件

标签:ar   文件   div   art   sp   log   on   c   linux   

原文地址:http://www.cnblogs.com/etangyushan/p/3978502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!