diff --git a/dinopass b/dinopass new file mode 100644 index 0000000..9affb53 --- /dev/null +++ b/dinopass @@ -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