Linux按日期查找文件并转移位置或彻底删除方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux按日期查找文件并转移位置或彻底删除方法相关的知识,希望对你有一定的参考价值。
查找/home下名为core+任意-2016+任意的文件,时间限定在在2016全年之间:
find /home/ -name ‘core*-2016*‘ -newermt ‘2016-01-01‘ ! -newermt ‘2016-12-31‘
-----
查找/home下名为core+任意-2016+任意的文件,时间限定在在2016全年之间,并将查找出来的数据移动到/backup/backup_core_2016文件夹之下。
find /home/oracle -name ‘core*‘ -newermt ‘2016-01-01‘ ! -newermt ‘2016-12-31‘ |xargs -i mv {} /backup/backup_core_2016
删除同理:
find /home/oracle -name ‘core*‘ -newermt ‘2016-01-01‘ ! -newermt ‘2016-12-31‘ |xargs -i rm -rf {}
-----
3天内被改动的文件
find /var/log/ -mtime -3 -type f -print
本文出自 “刀宝” 博客,请务必保留此出处http://mcluan.blog.51cto.com/11989648/1945061
以上是关于Linux按日期查找文件并转移位置或彻底删除方法的主要内容,如果未能解决你的问题,请参考以下文章
linux 定时任务,压缩 日志,并删除掉 指定日期之前的 日志