#!/bin/sh warnings_dir=/usr/local/mail max_age=30 find ${warnings_dir}/ -type f -mtime +${max_age} | xargs rm 2>/dev/null