adspace
How to delete unix files which are more than 3 days old?
Answer Posted / Kuldeep Pal
To delete Unix files that are older than 3 days, you can use the 'find' command: `find /path/to/directory -type f -mtime +3 -exec rm {} ;`
| 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