-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfiles.sh
executable file
·43 lines (36 loc) · 919 Bytes
/
files.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
#!/usr/bin/env bash
debug=${1:-false}
# Load help lib if not already loaded.
if [ -z ${libloaded+x} ]; then
source ./lib.sh
fi;
# Set dotfilesdir var if not declared.
if [ -z ${dotfilesdir+x} ]; then
dotfilesdir="$(dirname "$(pwd)")"
fi;
botintro "Sourcing directories and files to handle."
# Declare array of directories we want to symlink.
declare -a dotfilesdirarray=(
"$dotfilesdir/bin"
"$dotfilesdir/.mackup"
)
# Declare array of directories we want to symlink files from.
declare -a dotfilesfilearray=(
"$dotfilesdir/ack"
"$dotfilesdir/asdf"
"$dotfilesdir/bash"
"$dotfilesdir/curl"
"$dotfilesdir/editor"
"$dotfilesdir/git"
"$dotfilesdir/mackup"
"$dotfilesdir/node"
"$dotfilesdir/ruby"
"$dotfilesdir/screen"
"$dotfilesdir/shell"
"$dotfilesdir/tmux"
"$dotfilesdir/vim"
"$dotfilesdir/wget"
)
success "Directories and files sourced."
# Flag files as loaded
filesloaded=true