ok, so you have some files you want to look for, but lets say you only want to find the files which you have only edited within the last 2 days, you can use this command to do that

# find / -mtime 2

-mtime n
Files data was last modified n*24 hours ago. See the comments for -atime to understand how rounding affects the interpretation of file modification times.