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.

Pas de solution correcte

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top