mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
PREFIX="$1"
|
|
if [ -z "${PREFIX}" ]; then
|
|
PREFIX=/usr
|
|
fi
|
|
[ -z "${SUDO}" ] && SUDO=sudo
|
|
echo "Uninstalling r2 from ${PREFIX}..."
|
|
./configure --prefix="${PREFIX}"
|
|
${SUDO} make purge
|