1 #!/bin/bash
2
3 installDir="$HOME/.local/bin/"
4
5 if [ ! -d $installDir ]; then
6 echo "Making $installDir"
7 mkdir -p $installDir
8 fi
9
10 echo "Copying bin"
11 cp ./target/release/swmkp $installDir
12
13 echo "Copying words file"
14 cp ./eff_large_wordlist.txt $installDir