j
k
j a
j l
...find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1 I want to find all files modified 5 or less minutes ago. How do I do that? "find -mtime -1" only works in 24 hour increments. -cmin -5
find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1 I want to find all files modified 5 or less minutes ago. How do I do that? "find -mtime -1" only works in 24 hour increments.
find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1
I want to find all files modified 5 or less minutes ago. How do I do that? "find -mtime -1" only works in 24 hour increments.
-cmin -5
I cant believe I missed that. Thanks.
Matt
Back to the thread
Back to the list