desktop-ubuntu/_scripts/bak-current.sh

32 lines
472 B
Bash
Executable File

#!/usr/bin/zsh
BAK="/media/dym/priv_bak"
if [ ! -z "$1" ]; then
BAK="$1"
fi
cd `realpath "$0" | xargs dirname`
./bak-home.sh "$BAK/Home"
DIRS=(
Apps
Cfg
Projects
Site
Work
)
for DIR in "${DIRS[@]}"; do
echo "-
-
# '$DIR'"
sudo \
rsync -zrhP --links --size-only --verbose --delete \
--exclude '**/.Trash-1000' \
--exclude '**/__sapper__/' \
--exclude '**/node_modules/' \
--exclude '**/target/' \
"/$DIR/" \
"$BAK/${DIR}"
done