Frage

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.

Keine korrekte Lösung

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top