mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
12 lines
416 B
Bash
12 lines
416 B
Bash
#!/usr/bin/env bash
|
|
|
|
rsync /data/ nas.lan:/data/ \
|
|
--archive --copy-links --protect-args --delete \
|
|
--acls --xattrs --fake-super \
|
|
--partial --append-verify \
|
|
--compress --sparse --no-motd \
|
|
--human-readable --no-inc-recursive --info="progress2" -vv \
|
|
--exclude ".terraform*" --exclude "obsidian" \
|
|
--backup --backup-dir "changes_$(date +'%F_%H-%m-%S')" --exclude "changes_*" \
|
|
| grep -Ev -e uptodate -e "/$"
|