summaryrefslogtreecommitdiff
path: root/bin/bak-biz.sh
blob: 0a7ac0ba1262a535fb055e5f87b7823d2fdfa7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# ----------------------------------------------------------------------
# rotating-filesystem-snapshot utility
# essentially, rotate backup-snapshots of /home 
# on a weekly basis using rsync and cron
# ----------------------------------------------------------------------


rm -rf /mnt/backup/week.4
mv /mnt/backup/week.3 /mnt/backup/week.4
mv /mnt/backup/week.2 /mnt/backup/week.3
mv /mnt/backup/week.1 /mnt/backup/week.2
mv /mnt/backup/week.0 /mnt/backup/week.1
rsync -avvz ~/business/ \
--delete-after \
--exclude-from '/home/lxf/.rsync-exclude' \
--link-dest=/mnt/backup/week.1 \
 /mnt/backup/week.0/