#!/bin/sh
# Simple script which cleans up files which are older than 15 mins
# 
cd /tmp
find /tmp -name "*.att" -cmin +15 -maxdepth 1 -exec rm -f {} \;

