You can locate files using specific time patterns with the following examples:
-atime : last access time in days
-mtime : last modify time in days
-cmin : last change time in minutes
-amin : last access time in minutes
-mmin : last modify time in minutes
Command appears to be
find <dir> <timeoption>
You can use the following command to find all files in the current directory that were accessed 10 days ago:
find . -atime 10
To find all files modified 10 days ago in the current directory, you can use the following command:
find . -mtime 10
To find all files changed in the last 33 minutes in the current directory, you can use the following command:
find . -cmin 33
To find all files accessed in the last 33 minutes in the current directory, you can use the following command:
find . -amin 33
To find all files modified in the last 33 minutes in the current directory, you can use the following command:
find . -mmin 33