You need to have a script that deletes all files in a directory older than 7 days well Linux makes this easy:
Assume the directory we want to use is /local/backup
find /local/backup -mtime +7 -type f -exec rm -f {} \;
and your done.
Random thoughts and technical bits
You need to have a script that deletes all files in a directory older than 7 days well Linux makes this easy:
Assume the directory we want to use is /local/backup
find /local/backup -mtime +7 -type f -exec rm -f {} \;
and your done.