forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurge.sh
executable file
·32 lines (29 loc) · 838 Bytes
/
purge.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
#!/bin/sh
if [ -z "${MAKE}" ]; then
MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
fi
echo "All files related to current and previous installations
of r2 (including libraries) will be deleted. Continue? (y/n) "
read answer
case "$answer" in
y|Y)
if [ -x /usr/bin/apt-get ] ; then
sudo apt-get remove radare2
sudo apt-get remove libradare2-common
sudo apt-get remove --auto-remove libradare2-common
sudo apt-get purge libradare2-common
sudo apt-get purge --auto-remove libradare2-common
sudo apt-get remove libradare2
sudo apt-get remove --auto-remove libradare2
sudo apt-get purge libradare2
sudo apt-get purge --auto-remove libradare2
fi
# TODO: support brew
# TODO: support archlinux
# TODO: support gentoo
exit 0
esac
echo "Aborting."
exit 1