ctf-tools/hashpump/install

13 lines
187 B
Bash
Executable file

#!/bin/bash -e
git clone --depth 1 https://github.com/bwall/HashPump.git
cd HashPump
make -j $(nproc)
cd ..
pip install -e HashPump
mkdir bin
cd bin
ln -s ../HashPump/hashpump .
cd ..