LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   write a command whose modification time is changed in min (https://www.linuxquestions.org/questions/programming-9/write-a-command-whose-modification-time-is-changed-in-min-228151/)

suchi_s 09-08-2004 09:17 AM

write a command whose modification time is changed in min
 
find . -cmin 15
itis not working
find the name of the file that is changed brfore 15 mins

maxfacta 09-08-2004 09:34 AM

Options like -cmin take a numeric arg, together with an optional + or -
Simply specifying a number, like

-cmin 15

means find files exactly 15 minutes old.
To find files more than 15 minutes old, use

-cmin +15

and less than 15,

-cmin -15


All times are GMT -5. The time now is 10:59 PM.