ctf-tools/hashpump/install
2015-05-08 13:09:39 -07:00

13 lines
177 B
Bash
Executable file

#!/bin/bash -e
git clone 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 ..