0
|
1 #! /bin/sh
|
|
2
|
|
3 if [ $# -ne 1 ]; then
|
|
4 echo "Usage: $0 <dest>" >&2
|
|
5 exit 1
|
|
6 elif [ ! -d "$1" ]; then
|
|
7 echo "Destination $1 did not exist/was not a directory" >&2
|
|
8 exit 1
|
|
9 fi
|
|
10
|
|
11 DISK="$1"
|
|
12 RSYNC_ARGS=${RSYNC_ARGS:-}
|
|
13 rsync -av $RSYNC_ARGS --exclude=.thumbnails --exclude=temp --exclude=banshee.db --exclude=.cache --exclude=.local/share/Trash --exclude=.SpiderOak --exclude Documents/Games\ Workshop/LivingRuleBooks /home/ibboard "$DISK"/
|
|
14 rsync -av $RSYNC_ARGS --exclude=Videos/Other --include=Downloads/games --include=Downloads/M4Ps --exclude=Downloads/* --exclude=.Trash-1000 --exclude=.Trash-1001 --exclude=Pictures/Photos/Temp --exclude=VirtualBox/VBoxGuestAdditions* /mnt/media "$DISK"/
|
|
15 rsync -av $RSYNC_ARGS /usr/local/bin "$DISK"/
|
|
16
|