#!/bin/bash installDir="$HOME/.local/bin/" if [ ! -d $installDir ]; then echo "Making $installDir" mkdir -p $installDir fi echo "Copying bin" cp ./target/release/swmkp $installDir echo "Copying words file" cp ./eff_large_wordlist.txt $installDir