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