This commit is contained in:
Santiago Lo Coco 2022-02-15 23:37:25 -03:00
parent 29c2dad917
commit 02644a2422
1 changed files with 7 additions and 10 deletions

View File

@ -1,16 +1,12 @@
#!/usr/bin/env bash #!/usr/bin/env bash
skip_all=false
overwrite_all=false
backup_all=false
linkFile() { linkFile() {
if [[ -f "$2" ]]; then if [[ -f "$2" ]]; then
if [ "$skip_all" == "true" ]; then if [ "$skipAll" == "true" ]; then
return return
elif [ "$overwrite_all" == "true" ]; then elif [ "$overwriteAll" == "true" ]; then
ln -sf "$1" "$2" ln -sf "$1" "$2"
elif [ "$backup_all" == "true" ]; then elif [ "$backupAll" == "true" ]; then
mv "$2" "${2}.backup" mv "$2" "${2}.backup"
ln -s "$1" "$2" ln -s "$1" "$2"
else else
@ -24,18 +20,18 @@ linkFile() {
if [ "$selectedOption" -eq 1 ]; then if [ "$selectedOption" -eq 1 ]; then
return return
elif [ "$selectedOption" -eq 2 ]; then elif [ "$selectedOption" -eq 2 ]; then
skip_all=true skipAll=true
return return
elif [ "$selectedOption" -eq 3 ]; then elif [ "$selectedOption" -eq 3 ]; then
ln -sf "$1" "$2" ln -sf "$1" "$2"
elif [ "$selectedOption" -eq 4 ]; then elif [ "$selectedOption" -eq 4 ]; then
overwrite_all=true overwriteAll=true
ln -sf "$1" "$2" ln -sf "$1" "$2"
elif [ "$selectedOption" -eq 5 ]; then elif [ "$selectedOption" -eq 5 ]; then
mv "$2" "${2}.backup" mv "$2" "${2}.backup"
ln -s "$1" "$2" ln -s "$1" "$2"
else else
backup_all=true backupAll=true
mv "$2" "${2}.backup" mv "$2" "${2}.backup"
ln -s "$1" "$2" ln -s "$1" "$2"
fi fi
@ -46,6 +42,7 @@ linkFile() {
} }
loopThroughFiles() { loopThroughFiles() {
skipAll=false; overwriteAll=false; backupAll=false
SADEDOT=$(pwd -P) SADEDOT=$(pwd -P)
DOTFILES="$SADEDOT/dotfiles" DOTFILES="$SADEDOT/dotfiles"