码迷,mamicode.com
首页 > 其他好文 > 详细

批量创建并删除日志文件

时间:2019-02-13 22:47:32      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:ges   class   div   nbsp   src   xargs   shadow   删除日志   个人   

按照下图创建日志文件:

技术图片
使用脚本创建

for n in `seq 14`;
do
date -s "2016/03/$n";
touch access_www_$(date +%F).log;
done
~     

 

并删除7天之前的文件:当然所有的就都删除干净了:
三种方法都可以:

[root@centos heqiuyu]# find /root/heqiuyu -type f -mtime +7 | xargs rm -f
[root@centos heqiuyu]# find /root/heqiuyu -type f -mtime +7 -exec rm -f {} \;
[root@centos heqiuyu]# rm -f `find /root/heqiuyu -type f -mtime +7`

 

个人比较倾向于 用反引号这个

批量创建并删除日志文件

标签:ges   class   div   nbsp   src   xargs   shadow   删除日志   个人   

原文地址:https://www.cnblogs.com/heqiuyu/p/10372037.html

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