例如:
指定目录为:/home/yangyuqi/test_rm
指定过期时间为:5 天前
方法一
find /home/yangyuqi/test_rm -mtime +5 -type f -delete
find /home/yangyuqi/test_rm -type d -depth -delete
这个方法会删除所有的空目录,不论目录的修改时间是否过期
方法二
find /home/yangyuqi/test_rm -depth -mtime +5 -delete
这个方法要求目录本身的修改时间也是过期的
方法三
find /home/yangyuqi/test_rm -mtime +5 -type f -exec rm -f {} ;
find /home/yangyuqi/test_rm -type d -depth -exec rmdir {} ;
效果同方法一