Command to find all of the files which have been accessed within the last 30 days in linux
Question : command to find all of the files which have been accessed within the last 30 days?
Answer :find / -type f -atime -30 > December.files This command will find all the files under root, which is ‘/’, with file type is file. ‘-atime -30′ will give all the files accessed less than 30 days ago. And the output will put into a file call December.files.
Keywords:
how to find last 30 days files in linux
find files modified in last 2 days linux
linux find files modified in last hour
linux find files modified after a certain time
unix list files created between specific date and time
how to find files created on a specific date in unix
find files created in last 2 days
how to find files modified on a specific date in unix
No comments:
Post a Comment