#!/bin/sh
# Simple script which cleans up files which are older than 15 mins
# 
cd /tmp
for IMP_FILE in `find /tmp -name "*.att" -cmin +15 `; do
	rm -f "$IMP_FILE"
done

