aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/cleanup-backup
blob: af62b8891f0a71ddea8bec964c1b776ff404b3f0 (plain)
1
2
3
4
#!/usr/bin/env bash

# Delete files in specified folder, older than "older_than" (in days)
find $cleanup_folder -type f -atime +$older_than -print -exec rm {} \;