Refactor and update linkFiles.sh

This commit is contained in:
Santiago Lo Coco 2021-12-21 18:29:20 -03:00
parent ab90cd4ba5
commit b3ec50c43f
34 changed files with 41 additions and 32 deletions

View File

@ -1,32 +0,0 @@
#!/bin/sh
DOTFILES_HOME=$(pwd -P)
DOTFILES_CONFIG="$(pwd -P)/.config"
DOTFILES_ICONS="$(pwd -P)/.icons"
DOTFILES_SSH="$(pwd -P)/.ssh"
for src in $(find -H "$DOTFILES_HOME" -not -path '*.git*' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*'); do
if [ "$(basename "${src}")" = "CocoRice" ]; then
continue
fi
ln -s "$src" "$HOME/test/$(basename "${src}")"
done
for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH"; do
for src in $(find -H "$initialFolder"); do
if [[ -d "$src" ]]; then
var=$(echo "$src" | awk '{ sub(/.*CocoRice\//, ""); print }')
if [[ ! -d "$HOME/test/$var" ]]; then
echo "$HOME/test/$var" "doesn't exists"
mkdir -p "$HOME/test/$var"
fi
fi
if [[ -f "$src" ]]; then
var=$(echo "$src" | awk '{ sub(/.*CocoRice\//, ""); print }')
ln -s "$src" "$HOME/test/$var"
fi
done
done

41
scripts/linkFiles.sh Executable file
View File

@ -0,0 +1,41 @@
#!/bin/sh
lastFolder=$(pwd -P)
DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
cd $DOTFILES
DOTFILES_HOME=$DOTFILES/dotfiles
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
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
continue
fi
ln -s "$srcFile" "$HOME/test/$(basename "${srcFile}")"
done
for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH"; do
for srcFile in $(find -H "$initialFolder"); do
if [[ -d "$srcFile" ]]; then
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"
fi
done
done
cd $lastFolder
# echo "$(dirname "$0")"