adspace
Write a command to find all of the files which have been
accessed within the last 30 days. Output
should be stored in a file “December.files”
Answer Posted / Sumit Kumar Yadav
The following command can be used on Unix/Linux systems to find files modified within the last 30 days and save the output to a file named "December.files". Replace '/path' with your desired directory path:
find /path -type f -mtime 0 -exec ls -il {} ; > December.files
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
No New Questions to Answer in this Category !! You can
Post New Questions
Answer Questions in Different Category