Files
linuxtips/linux/backup-retention.sh
2025-01-02 20:59:59 +01:00

7 lines
89 B
Bash
Executable File

#!/bin/bash
#
#
RETENTION=5
DIR=/srv/somedir/here
find $DIR/* -mtime +$RETENTION -delete