Align backslashes

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-02 11:06:49 +02:00
parent b42a5b7486
commit 236ce5e89a

View file

@ -14,37 +14,37 @@ info "Starting backup"
# Backup the most important directories into an archive named after # Backup the most important directories into an archive named after
# the machine this script is currently running on: # the machine this script is currently running on:
borg create \ borg create \
--verbose \ --verbose \
--filter AME \ --filter AME \
--list \ --list \
--stats \ --stats \
--show-rc \ --show-rc \
--compression lz4 \ --compression lz4 \
--exclude-caches \ --exclude-caches \
--exclude '/home/*/.*/*' \ --exclude '/home/*/.*/*' \
--exclude '/home/*/.*' \ --exclude '/home/*/.*' \
--exclude '/home/*/builds/*' \ --exclude '/home/*/builds/*' \
--exclude '/home/*/github_dotfiles/*' \ --exclude '/home/*/github_dotfiles/*' \
--exclude '/home/*/github_misc/*' \ --exclude '/home/*/github_misc/*' \
--exclude '/home/*/Keepass/*' \ --exclude '/home/*/Keepass/*' \
--exclude '/home/*/Lessons/*' \ --exclude '/home/*/Lessons/*' \
--exclude '/home/*/Music/*' \ --exclude '/home/*/Music/*' \
--exclude '/home/*/PersonnalScripts/*' \ --exclude '/home/*/PersonnalScripts/*' \
--exclude '/home/*/RootMe/*' \ --exclude '/home/*/RootMe/*' \
--exclude '/home/*/SetupCockpit/*' \ --exclude '/home/*/SetupCockpit/*' \
--exclude '/home/*/SRC/*' \ --exclude '/home/*/SRC/*' \
--exclude '/home/*/VirtualBox VMs/*' \ --exclude '/home/*/VirtualBox VMs/*' \
--exclude '/home/*/Videos/*' \ --exclude '/home/*/Videos/*' \
--exclude '/var/cache/*' \ --exclude '/var/cache/*' \
--exclude '/var/log/*' \ --exclude '/var/log/*' \
--exclude '/var/tmp/*' \ --exclude '/var/tmp/*' \
\ \
::'{hostname}-{now}' \ ::'{hostname}-{now}' \
/etc \ /etc \
/home \ /home \
/root \ /root \
/var \ /var \
backup_exit=$? backup_exit=$?