备份删除操作:
删除15天以前的备份文件夹
#!/bin/bash#定期清理15天以前的数据,所有的数据保留最近15天的备份find /databack/ -type d -mtime +15 -print | xargs rm -rf