install.sh 252 B

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