This will list all the files on a Linux system that were modified in the past 5 days
find /path/to/start/at -mtime -5 -print
This will list all the files on a Linux system that were modified in the past 5 days
find /path/to/start/at -mtime -5 -print