Anyone know a good script or simple program to list all the files on the machine that have been modifed, say, in the last 10 minutes.
I'm gettng ready to configure a computer that will have both a solid state drive and a conventional hard drive in it. I want to arrange the filesystem so that files that are frequently modified reside on the conventional drive. Hence, I'd like to investigate what these files are on my current machine.
Edit:
find /directory_path -mtime -1 -print
Works to get files modified in the last 24 hours, which will be good enough, I suppose.