Post date: 26-May-2010 08:04:25
find <path> -mtime +X -exec rm {} \;
X is number of days.
eg.
find /path/to/files* -mtime +5 -exec rm {} \;