From 640ccdb4ecb6a7c622044dc13cc3853cbf2c1e7e Mon Sep 17 00:00:00 2001 From: Nick Trochalakis Date: Wed, 5 Feb 2025 01:35:35 -0800 Subject: [PATCH] Create dinopass --- dinopass | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dinopass 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