Hyprland-dotfiles/.dev/sync.sh

13 lines
413 B
Bash
Raw Normal View History

2023-12-03 11:50:14 -05:00
#!/bin/bash
2023-11-22 06:01:41 -05:00
# Execute the script with ./sync version e.g., ./sync 2.5.2
if [ ! -z $1 ] ;then
if [ -d ~/dotfiles-versions/"$1" ] ;then
echo "Folder exists. Start rsync now ..."
2023-12-20 11:06:18 -05:00
rsync -avhp -I --exclude-from=excludes.txt ~/dotfiles-versions/$1/ ~/dotfiles
2023-11-22 06:01:41 -05:00
else
echo "Folder ~/dotfiles-versions/$1 not found."
fi
else
echo "No folder specified. Please use ./sync folder"
fi