Refactor and update linkFiles.sh
This commit is contained in:
parent
ab90cd4ba5
commit
b3ec50c43f
32
linkFiles.sh
32
linkFiles.sh
|
@ -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
|
|
@ -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")"
|
Loading…
Reference in New Issue