From eec69f5741ddb9987d93d8a27be111f9ebe40281 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 20:32:59 -0300 Subject: [PATCH] Add backup/overwrite/skip --- scripts/bootstrap.sh | 4 +++- scripts/linkFiles.sh | 53 ++++++++++++++++++++++++++++++++++++++------ 2 files changed, 49 insertions(+), 8 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 94c076f..6513802 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -20,9 +20,11 @@ getGitconfigData() { startRice() { dialog --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles. Make sure to backup your dotfiles!" 10 60 + # getGitconfigData + ./scripts/linkFiles.sh - getGitconfigData + # clear } startRice \ No newline at end of file diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 83334aa..e6b447d 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -1,5 +1,45 @@ #!/bin/sh +skip_all=false +overwrite_all=false +backup_all=false + +linkFile() { + if [[ -f "$2" ]]; then + if [ "$skip_all" == "true" ]; then + return + elif [ "$overwrite_all" == "true" ]; then + ln -sf "$1" "$2" + elif [ "$backup_all" == "true" ]; then + mv "$2" "${2}.backup" + ln -s "$1" "$2" + else + selectedOption=$(dialog --menu "File already exists: $(basename "$1"), what would you like to do?" 10 60 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3 3>&1) + + if [ $selectedOption -eq 1 ]; then + return + elif [ $selectedOption -eq 2 ]; then + skip_all=true + return + elif [ $selectedOption -eq 3 ]; then + ln -sf "$1" "$2" + elif [ $selectedOption -eq 4 ]; then + overwrite_all=true + ln -sf "$1" "$2" + elif [ $selectedOption -eq 5 ]; then + mv "$2" "${2}.backup" + ln -s "$1" "$2" + else + backup_all=true + mv "$2" "${2}.backup" + ln -s "$1" "$2" + fi + fi + else + ln -s "$1" "$2" + fi +} + lastFolder=$(pwd -P) DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }') @@ -10,12 +50,14 @@ DOTFILES_CONFIG="$DOTFILES_HOME/.config" DOTFILES_ICONS="$DOTFILES_HOME/.icons" DOTFILES_SSH="$DOTFILES_HOME/.ssh" -for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git*' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*'); do +for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*'); do if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then continue fi - ln -s "$srcFile" "$HOME/test/$(basename "${srcFile}")" + if [[ -f "$srcFile" ]]; then + linkFile "$srcFile" "$HOME/test/$(basename "${srcFile}")" + fi done for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH"; do @@ -24,18 +66,15 @@ for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH"; do var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') if [[ ! -d "$HOME/test/$var" ]]; then - echo "$HOME/test/$var" "doesn't exists" mkdir -p "$HOME/test/$var" fi fi if [[ -f "$srcFile" ]]; then var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') - ln -s "$srcFile" "$HOME/test/$var" + linkFile "$srcFile" "$HOME/test/$var" fi done done -cd $lastFolder - -# echo "$(dirname "$0")" \ No newline at end of file +cd $lastFolder \ No newline at end of file