mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 01:37:06 +00:00
10 lines
203 B
Bash
Executable file
10 lines
203 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
PREFIX=$PWD
|
|
|
|
git clone --depth 1 https://github.com/gat3way/hashkill.git
|
|
cd hashkill
|
|
sed -i -e "s/1\.13/1\.14/g" configure
|
|
./configure --prefix="$PREFIX" --with-json
|
|
make -j
|
|
make install
|