Update linkFile.sh

This commit is contained in:
Santiago Lo Coco 2021-12-21 18:01:05 -03:00
parent 1bb74bf6c6
commit ab90cd4ba5
1 changed files with 18 additions and 17 deletions

View File

@ -2,30 +2,31 @@
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
continue
fi
#echo "$src"
#echo "$HOME/test/$(basename "${src}")"
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 }')
for src in $(find -H "$DOTFILES_CONFIG"); 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 [[ ! -d "$HOME/test/$var" ]]; then
echo "$HOME/test/$var" "doesn't exists"
mkdir -p "$HOME/test/$var"
fi
fi
if [[ -f "$src" ]]; then
#awk '{ sub(/.*CocoRice\//, ""); print }' <<< "$src"
var=$(echo "$src" | awk '{ sub(/.*CocoRice\//, ""); print }')
ln -s "$src" "$HOME/test/$var"
fi
done
if [[ -f "$src" ]]; then
var=$(echo "$src" | awk '{ sub(/.*CocoRice\//, ""); print }')
ln -s "$src" "$HOME/test/$var"
fi
done
done