Add a validation in linkFile

This commit is contained in:
Santiago Lo Coco 2022-02-15 23:47:09 -03:00
parent 02644a2422
commit 33a4fd4203
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ linkFile() {
mv "$2" "${2}.backup"
ln -s "$1" "$2"
else
[ -h "$2" ] && [ "$1" = $(realpath "$2") ] && continue
msg="\nFile already exists: '${2//$HOME\//}', what would you like to do?"
options=(1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all")
selectedOption=$(displayDialogBox --menu "$msg" VALUES 0 "${options[@]}" 3>&1 1>&2 2>&3)