blob: 2f078fa8bdd750994b319c167a5766f698db9b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
cd ~ || exit
fsync () {
rsync -RUuavn --delete-after $exclude $syncfile "$target"
printf "===commit these changes?\n"
printf "y/n: "
read -r 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/scripts"
target="/mnts/flash/backup"
exclude="--exclude target/* --exclude node_modules/* --exclude thumbnails/* --exclude 4dm/* --exclude /nwjs.*"
fsync
|