forked from MarioCatuogno/Clean-macOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clean-macOS.sh
executable file
·42 lines (38 loc) · 2.15 KB
/
Clean-macOS.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
#!/bin/bash
###############################################################################
# Set variables #
###############################################################################
BIN=~/Clean-macOS/bin # shell scripts
CONFIG=~/Clean-macOS/config # configuration files directory
SETUP=~/Clean-macOS # root folder of Clean-macOS
###############################################################################
# Menu #
###############################################################################
while :
do
clear
cat<<EOF
########################################################################
# Clean-macOS #
# Version : 1.12.21 #
########################################################################
# #
# Please enter your choice: #
# #
# (1) Install #
# (2) Configure #
# (3) Update #
# (0) Exit #
# #
########################################################################
EOF
read -n1 -s
case "$REPLY" in
"1") echo "Ready to install Homebrew..." | $BIN/install.sh ;;
"2") echo "Ready to configure macOS..." | $BIN/config.sh ;;
"3") echo "Ready to update Homebrew..." | $BIN/update.sh ;;
"0") exit ;;
* ) echo "Invalid option!" ;;
esac
sleep 1
done