Hyprland-dotfiles/.dev/sync.sh

13 lines
408 B
Bash
Raw Normal View History

2023-11-22 06:01:41 -05:00
#!/bin/sh
# 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 ..."
rsync -avzh --exclude-from=excludes.txt ~/dotfiles-versions/$1/ ~/dotfiles
else
echo "Folder ~/dotfiles-versions/$1 not found."
fi
else
echo "No folder specified. Please use ./sync folder"
fi