forked from Logic-gate/Bash-Snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·143 lines (130 loc) · 3.15 KB
/
install.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.4.0"
if [[ $# == 0 ]]; then
echo -n "Do you wish to install currency [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd currency || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
unset answer
echo -n "Do you wish to install stocks [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd stocks || exit 1
./install.sh
cd .. || exit 1
fi
unset answer
echo -n "Do you wish to install weather [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd weather || exit 1
./install.sh
cd .. || exit 1
fi
unset answer
echo -n "Do you wish to install crypt [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd crypt || exit 1
./install.sh
cd .. || exit 1
fi
unset answer
echo -n "Do you wish to install movies [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd movies || exit 1
./install.sh
cd .. || exit 1
fi
unset answer
echo -n "Do you wish to install taste [Y/n]: "
read -r answer
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
cd taste || exit 1
./install.sh
cd .. || exit 1
fi
fi
if [[ $1 == "currency" ]];then
cd currency || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "stocks" ]]; then
cd stocks || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "weather" ]]; then
cd weather || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "crypt" ]]; then
cd crypt || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "movies" ]]; then
cd movies || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "taste" ]]; then
cd taste || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "all" ]];then
cd currency || exit 1
./install.sh || exit 1
cd .. || exit 1
cd stocks || exit 1
./install.sh || exit 1
cd .. || exit 1
cd weather || exit 1
./install.sh || exit 1
cd .. || exit 1
cd crypt || exit 1
./install.sh || exit 1
cd .. || exit 1
cd movies || exit 1
./install.sh || exit 1
cd .. || exit 1
cd taste || exit 1
./install.sh || exit 1
cd .. || exit 1
elif [[ $1 == "update" ]]; then
echo "Updating scripts..."
if [[ -f /usr/local/bin/currency ]];then
cd currency || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
if [[ -f /usr/local/bin/stocks ]];then
cd stocks || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
if [[ -f /usr/local/bin/weather ]];then
cd weather || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
if [[ -f /usr/local/bin/crypt ]];then
cd crypt || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
if [[ -f /usr/local/bin/movies ]];then
cd movies || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
if [[ -f /usr/local/bin/taste ]];then
cd taste || exit 1
./install.sh || exit 1
cd .. || exit 1
fi
fi
echo "Bash Snippets version $currentVersion"
echo "https://github.com/alexanderepstein/Bash-Snippets"