删除目录

find /your_dir/ -maxdepth 1 -type d -mtime +3 -exec rm -rf {} \;

 

删除文件

find /目录/ -mtime +3 -name "*.log" -exec rm -rf {} \;