]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - bin/srsync-incremental
bin/srsync-incremental: Add, incremental backups with rsync.
[config/dotfiles.git] / bin / srsync-incremental
1 #!/bin/sh
2
3 # Perform incremental backups using rsync and hardlinks.
4 #
5 # Thanks to http://www.sanitarium.net/golug/rsync_backups_2010.html for the
6 # idea.
7
8 # Copyright (C) 2011-2012  Simon Ruderich
9 #
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23
24 if [ $# -lt 2 ]; then
25     echo "Usage: $0 <backups-directory> <arguments to rsync>" >&2
26     echo
27     echo "Note: The target directory is the _first_ argument!" >&2
28     exit 2
29 fi
30
31 cd "$1" || exit 1
32 shift
33
34 dest=`echo backup-*`
35 if [ "x$dest" != 'xbackup-*' ]; then
36     dest="`pwd`/`ls -1d backup-* | tail -n1`"
37 fi
38
39 target=backup-`date '+%Y-%m-%d-%H-%M-%S'`
40
41 if [ -d current ]; then
42     echo "Target directory 'current' already exists, aborting." >&2
43     exit 1
44 fi
45
46 mkdir current
47 rsync \
48     --verbose --human-readable \
49     --archive --hard-links --numeric-ids --one-file-system \
50     --link-dest="$dest" \
51     "$@" current \
52 && mv current "$target"