blob: 0e4d50317f65b42434b3ce666cfcc4ecaf03af84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
# Yaroslav de la Peña Smirnov 2021
# Shortcut script for backing up files with rsync.
# By default it starts a dry run, to check that there are no conflicts. To
# commit the copy, i.e. do a normal (non-dry) run, use -c as the first or last
# argument.
############################# Config example ###################################
## Lines in the locations file contain the shortcuts for the sources and
## destinations. For example, sources:
# src d /home/yaroslav/docs
# src m /home/yaroslav/music
## destinations:
# dst rm yaroslav@example.com:
# dst hd /mnt/disk/
## The columns MUST be separated by ONE tab character
################################################################################
locations="$HOME/docs/data/bkup/locations"
ops="-ahv --delete --progress"
if [ "$1" = "-c" ]; then
srckey="$2"
dstkey="$3"
else
if [ "$3" != "-c" ]; then
ops="-ahvn --delete"
fi
srckey="$1"
dstkey="$2"
fi
if [ -z $srckey ] || [ -z $dstkey ]; then
echo "Usage: bkup [-c] <source shortcut> <destination shortcut> [-c]"
exit 1
fi
relsrc="$(grep -E "src[[:space:]]+$srckey" "$locations" | cut -f3)"
if [ -z "$relsrc" ]; then
echo "Source shortcut not found"
exit 1
fi
target="$(echo "$relsrc" | awk -F'/' '{print $(NF)}')"
reldst="$(grep -E "dst[[:space:]]+$dstkey[[:space:]]+" "$locations" | cut -f3)"
if [ -z "$reldst" ]; then
echo "Destination shortcut not found"
exit 1
fi
rsync $ops "$relsrc/" "$reldst$target/"
|