Deleting files

OK, Easy question probably, I have a directory that is full of like 1000 files.
I want to get rid of files more than 5 days old.

Is there an easy way to do this? there are like 800 files that fit into this category so doing it manually would be a pain.

Any help is appreciated!

You can use find.

find /var/tmp/* -user tstusr -mtime +5 -exec rm {};

/var/tmp - is the directory
-user tstuser - Is optional