How can I find all the files that were created by a particular session using ssh?
Or search for files that were created/modified on a particular date?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the find command with the various switches of -mtime -ctime and -atime
Quoted from this link: http://www.softpanorama.org/Tools/Find/selecting_files_by_age.shtml
To find html files that have been modified in the last seven 24-hour periods (days), I can use -mtime with the argument -7 (include the hyphen):