mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-18 23:43:59 +00:00
8 lines
143 B
Text
8 lines
143 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone https://github.com/radare/radare2.git
|
||
|
cd radare2/
|
||
|
./configure --prefix=$(dirname $PWD)
|
||
|
make -j $(nproc)
|
||
|
make install
|