8 lines
257 B
Bash
8 lines
257 B
Bash
#!/bin/sh
|
|
|
|
DestDir="/mnt/data/backups/arch-griffix/griffix/"
|
|
#ExcludeList='{/home/griffix/.local/share/Steam,/home/griffix/Games}'
|
|
|
|
rsync -avuz --exclude ".local/share/Steam" --exclude "Games" --exclude "Téléchargements" /home/griffix/ $DestDir
|
|
|
|
exit $?
|