Files
dotfiles/env/.local/bin/scripts/backup/backup-flash
iceyrazor b95ae4c5c9 - moved system scripts to here
- config changes
- fixed my backup scripts. rsync -a
- added dmenu script
- fixed finds in env.sh
2025-06-30 00:05:45 -05:00

22 lines
476 B
Plaintext
Executable File

cd ~/stuff/scripts
fsync () {
# t?
rsync -RUuavn --delete-after $exclude $syncfile "$target"
printf "===commit these changes?\n"
read - "y/n: " uinput
if [ "$uinput" != "n" ] && [ "$uinput" != "N" ]; then
printf "\n\n\n"
rsync -RUuav --progress --delete-after $exclude $syncfile "$target"
printf "\n===end sync\n---------\n\n"
fi
}
syncfile="LINUX-SERVER1 sites"
#sync game stuff
target="/home/iceyrazor/u"
exclude=""
fsync