mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
8 lines
149 B
Text
8 lines
149 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
[ -e honggfuzz ] || git clone --depth 1 https://github.com/google/honggfuzz
|
||
|
cd honggfuzz
|
||
|
make -j
|
||
|
mkdir -p ../bin
|
||
|
cp honggfuzz ../bin
|