Created
December 7, 2023 10:41
-
-
Save iceman1001/79451e48099ae382c0e9e9479999a2d7 to your computer and use it in GitHub Desktop.
Search Proxmark3 dictionaries folder with key that has spaces inside
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# chmod 755 sd.sh | |
# | |
# Sample code | |
# ./sd.sh "00 01 02 03 04 05" -C4 | |
# | |
str="$1" | |
cleanstr="${str// /}" | |
echo rg -i "${cleanstr}" client/dictionaries | |
rg -i "${cleanstr}" "$2" client/dictionaries |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment