Akumiling
12-18-02, 03:53
| Hi, I want remove files in AIX that only specific date. Example: I want delete file that creation date 10-Nov-2002. What's command? |
View Full Version : How to remove file that specific date
| Hi, I want remove files in AIX that only specific date. Example: I want delete file that creation date 10-Nov-2002. What's command? |
| Originally posted by Akumiling Hi, I want remove files in AIX that only specific date. Example: I want delete file that creation date 10-Nov-2002. What's command? find /some/path -mtime 5 -exec rm {} \ this will del files 5 days ago |