LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to list all modified files on specified day ? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-list-all-modified-files-on-specified-day-741312/)

m_abdelfattah 07-20-2009 01:47 AM

How to list all modified files on specified day ?
 
one of my client sites has been hacked, and I want to list all modified files in a specified date (07/07/09).

Thanks for your time !!

PMP 07-20-2009 02:08 AM

man find

colucix 07-20-2009 02:11 AM

Assuming 07/07/07 is 13 days ago from today 20/07/09:
Code:

find / -daystart -mtime 13 -print0 | xargs -0 ls -lrt


All times are GMT -5. The time now is 05:39 PM.