-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.sh
executable file
·162 lines (150 loc) · 3.29 KB
/
uninstall.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/sh
##########################################
# Copyright (c) xTekC. #
# Licensed under MPL-2.0. #
# See LICENSE for details. #
# https://www.mozilla.org/en-US/MPL/2.0/ #
##########################################
set -e
RED='\033[0;31m'
NC='\033[0m' # No Color
red_printf() {
printf '%b\n' "${RED}$1${NC}"
}
BIN_NAME="ni"
detect_architecture() {
case "$(uname -s)" in
Linux)
case "$(uname -m)" in
riscv64)
# Check if it's Android
if [ -f /system/bin/linker64 ]; then
echo "riscv64-linux-android"
else
found_file=false
for file in /lib*/ld-musl-*.so.1; do
if [ -f "$file" ]; then
found_file=true
break
fi
done
if [ "$found_file" = true ]; then
echo "riscv64gc-unknown-linux-musl"
else
echo "riscv64gc-unknown-linux-gnu"
fi
fi
;;
aarch64)
# Check if it's Android
if [ -f /system/bin/linker64 ]; then
echo "aarch64-linux-android"
else
found_file=false
for file in /lib*/ld-musl-*.so.1; do
if [ -f "$file" ]; then
found_file=true
break
fi
done
if [ "$found_file" = true ]; then
echo "aarch64-unknown-linux-musl"
else
echo "aarch64-unknown-linux-gnu"
fi
fi
;;
x86_64)
found_file=false
for file in /lib*/ld-musl-*.so.1; do
if [ -f "$file" ]; then
found_file=true
break
fi
done
if [ "$found_file" = true ]; then
echo "x86_64-unknown-linux-musl"
else
echo "x86_64-unknown-linux-gnu"
fi
;;
*)
echo "Unsupported BIN_ARCH: $(uname -m)"
exit 1
;;
esac
;;
FreeBSD)
case "$(uname -m)" in
riscv64)
echo "riscv64-unknown-freebsd"
;;
aarch64)
echo "aarch64-unknown-freebsd"
;;
x86_64)
echo "x86_64-unknown-freebsd"
;;
*)
echo "Unsupported BIN_ARCH: $(uname -m)"
exit 1
;;
esac
;;
MacOS)
case "$(uname -m)" in
aarch64)
echo "aarch64-apple-darwin"
;;
x86_64)
echo "x86_64-apple-darwin"
;;
*)
echo "Unsupported BIN_ARCH: $(uname -m)"
exit 1
;;
esac
;;
*)
echo "Unsupported operating system: $(uname -s)"
exit 1
;;
esac
}
BIN_ARCH=$(detect_architecture)
BIN_DIR="$HOME/${BIN_NAME}"
detect_shell() {
SHELL_PATH=$(which "$SHELL")
case "$SHELL_PATH" in
*/shell) echo ".shrc" ;;
*/bash) echo ".bashrc" ;;
*/zsh) echo ".zshrc" ;;
*/fish) echo ".config/fish/config.fish" ;;
*/nushell) echo ".config/nushell/config.toml" ;;
*) echo "unknown" ;;
esac
}
remove_bin() {
clear
if [ -d $BIN_DIR ]; then
#rm -rf $BIN_DIR
if [ $BIN_ARCH = "riscv64-linux-android" ] || [ $BIN_ARCH = "aarch64-linux-android" ]; then
red_printf "Removed ${NC}$BIN_NAME${RED} binary from ${NC}$BIN_DIR${RED}.\n"
sed -i '/alias '$BIN_NAME'=".\/'$BIN_NAME'\/bin\/'$BIN_NAME'"/d' $HOME/.bashrc
red_printf "Removed ${NC}$BIN_NAME${RED} binary alias."
else
red_printf "Remove ${NC}$BIN_NAME${RED} from \$HOME:\n"
echo "cd \$HOME && rm -rf ni"
echo ''
red_printf "Shell config detected as: ${NC}$(detect_shell)"
red_printf "Remove ${NC}$BIN_NAME${RED} bin dir from shell config file:\n"
echo "sed -i '/export PATH=\"\$PATH:\$HOME\/ni\/bin\"/d' \"\$HOME/$(detect_shell)\""
echo ''
fi
else
red_printf "\n${NC}$BIN_NAME${RED} binary not found."
echo ''
fi
}
detect_shell
remove_bin