8 lines
247 B
Bash
8 lines
247 B
Bash
#!/bin/sh
|
|
|
|
DestDir="/mnt/data/backups/arch-griffix/griffix/"
|
|
|
|
rsync -avuz --exclude ".local/share/Steam" --exclude "Games" --exclude "Téléchargements" /home/griffix/ $DestDir
|
|
rsync -avuz /mnt/pi5data/backups/pi5 /mnt/data/backups/pi5
|
|
|
|
exit $?
|