forked from alrra/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_symbolic_links.sh
executable file
·128 lines (88 loc) · 3.27 KB
/
create_symbolic_links.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "utils.sh"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
create_symlinks() {
declare -a FILES_TO_SYMLINK=(
"shell/bash_aliases"
"shell/bash_autocomplete"
"shell/bash_bash-it"
"shell/bash_direnv"
"shell/bash_exports"
"shell/bash_functions"
"shell/bash_init"
"shell/bash_logout"
"shell/bash_nvm"
"shell/bash_options"
"shell/bash_profile"
"shell/bash_prompt"
"shell/bash_zoxide"
"shell/bashrc"
"shell/curlrc"
"shell/inputrc"
"shell/screenrc"
"git/gitattributes"
"git/gitconfig"
"git/gitignore"
"git/git_commit_message_template"
"npm/npmrc"
"vim/vim"
"vim/vimrc"
"tmux/tmux.conf"
"sshrc/sshrc"
"other/czrc"
"other/cz-config.js"
"other/ideavimrc"
)
local i=""
local sourceFile=""
local targetFile=""
local skipQuestions=false
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
skip_questions "$@" \
&& skipQuestions=true
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
for i in "${FILES_TO_SYMLINK[@]}"; do
sourceFile="$(cd .. && pwd)/$i"
# sed 'substitute' command (See http://www.grymoire.com/Unix/Sed.html#uh-1)
# using regex '.*\/\(.*\)' and replacing topic folder with its contents
# For example, 'shell/bash_aliases' to 'bash_aliases'
targetFile="$HOME/.$(printf "%s" "$i" | sed "s/[^\/]*\/\(.*\)/\1/g")"
targetFolder="$(printf "%s" "$targetFile" | sed "s|/[^/]*$||")"
if [ "$(readlink "$targetFile")" == "$sourceFile" ]; then
print_success "$targetFile → $sourceFile"
elif [ ! -e "$targetFile" ] || $skipQuestions; then # -e : True if file exists (regardless of type).
if [ "$targetFolder" != "$HOME" ]; then
mkdir -p "$targetFolder"
fi
execute_without_spinner \
"ln -fs $sourceFile $targetFile" \
"$targetFile → $sourceFile"
# ln : make links between files
# -f : force = remove existing destination files
# -s : symbolic =make symbolic links instead of hard links (see https://www.youtube.com/watch?v=aO0OkNxDJ3c)
else
if ! $skipQuestions; then
ask_for_confirmation "'$targetFile' already exists, do you want to overwrite it?"
if answer_is_yes; then
rm -rf "$targetFile"
if [ "$targetFolder" != "$HOME" ]; then
mkdir -p "$targetFolder"
fi
execute_without_spinner \
"ln -fs $sourceFile $targetFile" \
"$targetFile → $sourceFile"
else
print_error "$targetFile → $sourceFile"
fi
fi
fi
done
}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
main() {
print_in_purple "\n\n * Create symbolic links\n\n"
create_symlinks "$@"
}
# Pass '-y' to script to skip questions
main "$@"