#!/bin/sh
days='15';
dir1='/root/.mysqlbackups';
/usr/bin/find $dir1 -type f -mtime +${days} -exec rm -f '{}' \; ;
