aboutsummaryrefslogtreecommitdiff
path: root/env/.local/bin/scripts/backup/backup-flash
blob: 732d19139798c15cf2d01fb0d070b5a4c2b2c3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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