summaryrefslogtreecommitdiff
path: root/remove-old-backups.in
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2024-04-29 18:24:45 +0200
committerErich Eckner <git@eckner.net>2024-04-29 18:24:45 +0200
commit6274fc763a47ad0517ee19dfc728ef65114eef94 (patch)
tree7f7c7427bb4cec16de011d64cd8456f4f4df49dd /remove-old-backups.in
parent86c82d54457b2c0c348253873c5621f145d27339 (diff)
downloadhardlinkedBackups-6274fc763a47ad0517ee19dfc728ef65114eef94.tar.xz
remove-old-backups: only keep backups of the last 180 days
Diffstat (limited to 'remove-old-backups.in')
-rwxr-xr-xremove-old-backups.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/remove-old-backups.in b/remove-old-backups.in
index c931409..e1a795d 100755
--- a/remove-old-backups.in
+++ b/remove-old-backups.in
@@ -61,7 +61,7 @@ backups=$(
uniq -f2
printf '%s\n' "${backups}" | \
sed "$(
- for dist in $(seq 0 20 365); do
+ for dist in $(seq 0 20 180); do
printf '/ %s \S\+$/p\n' \
"$(date '+%m %Y' -d@$(($(date +%s)-24*60*60*${dist})))"
done | \