shell-删除指定时间前的文件
需要配合find和rm两个命令完成
显示20分钟前的文件:
find /home/prestat/bills/test -type f -mmin +20 -exec ls -l {} \;
删除20分钟前的文件:
find /home/prestat/bills/test -type f -mmin +20 -exec rm {} \;
具体操作需要掌握find命令的各种参数
https://www.cnblogs.com/wanqieddy/archive/2011/06/09/2076785.html