Display files created on particular date & time

Hi , I have BASH system & i am trying to display the files created on a particular date and time, and after displaying those files I also want to delete all those files.Can anyone of you help me out for this.............
Thanx

BASH is not a system, BASH is only a shell. BASH running in solaris will have access to a far different set of commands than BASH running in Linux for instance. What's your system? 'uname -a' if you don't know.

How specific a date and time? How do you want to enter the date and time?

Deal Pal ,

Your requirement seems kind of vague .Do ypu want to find out files that are created recently and delete them off ? then try this (with utmost care) .

find ~ -mmin -2 -type f -print -exec rm {} \;

-mmin is a GNU-only option. You probably won't have it outside of Linux.