Need file timestamp without stat command

Hi all,

I want to check whether a file is not updated in last 15 minutes, for this i need to get timestamp of file, (yyyy:mm:dd:hh:mi:ss). I dont have access to STAT command :(.

Please suggest a program or command to do this .

Thanks,
Saravana

how about in this way?

find . -cmin 15 -a -name "yourfilename"
1 Like