Shell,使用find,rm删除指定天数前的文件 2016年02月03日 标签:Linux, Shell Tips eg. 删除/root/Backup目录下30天前的文件 find /root/Backup -mtime +30 -name "*.*" -exec rm -rf {} \;