mirror of
https://github.com/php/systems.git
synced 2026-03-23 23:32:12 +01:00
5 lines
83 B
Bash
Executable File
5 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
# Backup pruning
|
|
find /local/backups/ -mtime +7 -exec rm -r {} \;
|