Create dinopass

This commit is contained in:
Nick Trochalakis
2025-02-05 01:35:35 -08:00
committed by GitHub
parent 86016bab87
commit 640ccdb4ec
+20
View File
@@ -0,0 +1,20 @@
#!/bin/bash
###
### Copy to your path and make executable
###
STRONG_URL="https://www.dinopass.com/password/strong"
SIMPLE_URL="https://www.dinopass.com/password/simple"
if [ "$1" == "strong" ]; then
curl $STRONG_URL
echo ""
echo ""
elif [ "$1" == "simple" ]; then
curl $SIMPLE_URL
echo ""
echo ""
else
echo "Invalid command. Use 'strong' or 'simple'."
fi