This finds all files modified 5 minutes ago. 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. Matt
Wed Jan 21 17:17:45 UTC 2009
Matt <lm7812 at gmail.com>
This finds all files modified 5 minutes ago. 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. Matt