Run shellcheck (linkFiles.sh)

This commit is contained in:
Santiago Lo Coco 2022-01-14 01:40:38 -03:00
parent 4a644ff46d
commit da082579af
1 changed files with 10 additions and 8 deletions

View File

@ -19,17 +19,17 @@ linkFile() {
exit 0 exit 0
fi fi
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 skip_all=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 overwrite_all=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
@ -45,12 +45,13 @@ linkFile() {
loopThroughFiles() { loopThroughFiles() {
COCORICE=$(pwd -P) COCORICE=$(pwd -P)
DOTFILES=$COCORICE/dotfiles DOTFILES="$COCORICE/dotfiles"
DOTFILES_CONFIG="$DOTFILES/.config" DOTFILES_CONFIG="$DOTFILES/.config"
DOTFILES_LOCAL="$DOTFILES/.local" DOTFILES_LOCAL="$DOTFILES/.local"
DOTFILES_ICONS="$DOTFILES/.icons" DOTFILES_ICONS="$DOTFILES/.icons"
DOTFILES_SSH="$DOTFILES/.ssh" DOTFILES_SSH="$DOTFILES/.ssh"
local IFS=$'\n'
for srcFile in $(find -H "$DOTFILES" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*' -not -path '*other*'); do for srcFile in $(find -H "$DOTFILES" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*' -not -path '*other*'); do
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
continue continue
@ -89,8 +90,8 @@ loopThroughFiles() {
fi fi
password=$(displayDialogBox --passwordbox "Enter your password" VALUES 3>&1 1>&2 2>&3) password=$(displayDialogBox --passwordbox "Enter your password" VALUES 3>&1 1>&2 2>&3)
echo $password | sudo -S bash -c "" > /dev/null 2>&1 echo "$password" | sudo -S bash -c "" > /dev/null 2>&1
echo $password | sudo -S bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox" echo "$password" | sudo -S bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox"
unset password unset password
} }
@ -100,6 +101,7 @@ runDetachedScript() {
DOTFILES_OTHER=$(pwd -P)/dotfiles/other DOTFILES_OTHER=$(pwd -P)/dotfiles/other
local IFS=$'\n'
for srcFile in $(find -H "$DOTFILES_OTHER"); do for srcFile in $(find -H "$DOTFILES_OTHER"); do
if [[ -d "$srcFile" ]]; then if [[ -d "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')