aboutsummaryrefslogtreecommitdiff
path: root/env/.local/bin/scripts/backup/backup-flash
blob: bd2e1406efb319f4a817a181af552e45abcb73d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cd ~

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="stuff/notes"

#sync game stuff
target="/home/iceyrazor/u"
exclude=""

fsync