Delete files older than certain number of days
#!/bin/bash DAYS=30 find ./my_dir -mtime +${DAYS} -type f -delete