forked from matthewmueller/dots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdots.sh
executable file
·96 lines (81 loc) · 1.47 KB
/
dots.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
#!/usr/bin/env bash
version="0.0.1"
# paths
export dirname=$(dirname "$(readlink -f "$0")")
export lib="$dirname/lib"
export os="$dirname/os"
# usage info
usage() {
cat <<EOF
Usage: dots [options] [command] [args ...]
Options:
-v, --version Get the version
-h, --help This message
Commands:
reload Reload the dotfiles
boot <os> Bootstrap the given operating system
update Update dots
EOF
}
# Bootstrap the OS
boot() {
if [[ -e "$os/$1/index.sh" ]]; then
sh "$os/$1/index.sh"
else
echo "boot: could not find \"$1\""
exit 1
fi
}
# update either dots or OS
update() {
if [[ -e "$os/$1/index.sh" ]]; then
sh "$os/$1/update.sh"
elif [[ "$1" == "dots" ]]; then
updatedots
else
echo "update: could not find \"$1\""
exit 1
fi
}
# update dots(1) via git clone
updatedots() {
cd /tmp \
&& echo "... updating" \
&& git clone --depth 1 git://github.com/matthewmueller/dots.git \
&& cd dots \
&& make install \
&& echo "... updated to $(dots --version)"
exit
}
# parse options
while [[ "$1" =~ ^- ]]; do
case $1 in
-v | --version )
echo $version
exit
;;
-h | --help )
usage
exit
;;
esac
shift
done
# run command
case $1 in
reload )
source "$HOME/.bash_profile"
;;
boot )
boot $2
exit
;;
update )
update $2
exit
;;
*)
usage
exit
;;
esac