Question

I was supposed to remove the archive files that are at least 7days older or the files will be retain to the directory for about 7 days only. How can I execute it using shell script?

Thanks.

No correct solution

OTHER TIPS

Using find

find /path/to/dir -mtime +7 -type f -exec rm {} \;

I think everyday (use cron) you'll check which files are older than 7 days

check http://ubuntuforums.org/showthread.php?t=2006006

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top