Find files which are <n> minutes old

Hi,
i want to find certain files which are more than <n> minutes old,i have the command to find the files say <n> days old(as below) but not in terms of minutes.
find . -name "14*.000" -type f -mtime +1

Is there any way to find this?

Regards,
Cherry

Of course there is a way to find files of any time interval old.
You can touch a file with certain timestamp (see manual pages for program touch) and then use find with option -newer (see manual pages for program find). This procedure can be stored in a simple but useful shell script. Try it!

You can use -mmin option

find . -name "14*.000" -type f   -mmin +1

You cannot do this with a standard/older find.