Created
January 15, 2019 13:01
-
-
Save terceranexus6/18465e88458451e7838e86e3801cf3b7 to your computer and use it in GitHub Desktop.
install radare easily
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BLUE='\033[0;36m' | |
RED='\033[0;31m' | |
PURPLE='\033[0;35m' | |
NC='\033[0m' # No Color | |
echo -e "${BLUE}Let's install radare. Please execute the configuration script before. For more information please visit https://www.radare.org/r/down.html${NC}" | |
echo -e "${BLUE}Getting the tar file${NC}" | |
wget https://github.com/radare/radare2/archive/3.2.1.tar.gz | |
echo -e "${BLUE}Unpacking radare${NC}" | |
tar xzvf 3.2.1.tar.gz | |
cd radare2-3.2.1/ | |
./configure --prefix=/usr | |
make -j8 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment