recently created/modified files

Hi everyone,

As part of a security measure I would like to know where I can get a list of all the recently created or modified files on my server.

I found the following command:

The following command lists all files that were created in the past two weeks:

root> find . -mtime -14 -print

However this seems to check only in the directory that I am currently in. Is there a way to make the above command apply to the whole server?

Thanks very much I appreciate the help!

Mark

 

 

 

 

Top