mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
7 lines
149 B
Bash
Executable file
7 lines
149 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
[ -e honggfuzz ] || git clone --depth 1 https://github.com/google/honggfuzz
|
|
cd honggfuzz
|
|
make -j
|
|
mkdir -p ../bin
|
|
cp honggfuzz ../bin
|