aboutsummaryrefslogtreecommitdiff
path: root/env/.local/bin/scripts/backup/backup-tol2
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2025-06-30 00:05:45 -0500
committericeyrazor <iceyrazor@mailfence.com>2025-06-30 00:05:45 -0500
commitb95ae4c5c9ff4d693d6424cce8a0d579754c4202 (patch)
treeaa6385301fc4dce26d70bc473fd876c794fc5f74 /env/.local/bin/scripts/backup/backup-tol2
parent22b2eb9a952bf252af29eb5ed905de4bb62386a2 (diff)
- moved system scripts to here
- config changes - fixed my backup scripts. rsync -a - added dmenu script - fixed finds in env.sh
Diffstat (limited to 'env/.local/bin/scripts/backup/backup-tol2')
-rwxr-xr-xenv/.local/bin/scripts/backup/backup-tol24
1 files changed, 2 insertions, 2 deletions
diff --git a/env/.local/bin/scripts/backup/backup-tol2 b/env/.local/bin/scripts/backup/backup-tol2
index 1f0a66d..18dd1c7 100755
--- a/env/.local/bin/scripts/backup/backup-tol2
+++ b/env/.local/bin/scripts/backup/backup-tol2
@@ -2,7 +2,7 @@ cd ~/
fsynca () {
# t?
- rsync -RUurvn --size-only --delete-after $exclude $syncfile "$target"
+ rsync -RUuavn --delete-after $exclude $syncfile "$target"
}
fsyncb () {
@@ -10,7 +10,7 @@ fsyncb () {
read -p "y/n: " uinput
if [ "$uinput" != "n" ] && [ "$uinput" != "N" ]; then
printf "\n\n\n"
- rsync -RUurv --progress --size-only --delete-after $exclude $syncfile "$target"
+ rsync -RUuav --progress --delete-after $exclude $syncfile "$target"
printf "\n===end sync\n---------\n\n"
fi
}