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.

没有正确的解决方案

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top