mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-07 10:08:48 +00:00
12 lines
159 B
Text
12 lines
159 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone https://github.com/trailofbits/codereason
|
||
|
cd codereason
|
||
|
./make.sh
|
||
|
cd ..
|
||
|
|
||
|
mkdir -p bin
|
||
|
cd bin
|
||
|
ln -s ../codereason/build/bin/* .
|
||
|
cd ..
|