deleting by date

Hello,Is there anybody here who can teach me how to delete unix files by date?

You can use 'ls -l' to view the date on your files, then use the 'rm' command to remove any that you like. You could also use find, maybe something like:

find . -mtime +5 -exec rm {} \;

which would erase any files not modified within the last 5 days. Check the find man page for more info.

Many thanks to you PxT.