mirror of
https://github.com/Chewbaccalakis/random.git
synced 2026-07-12 13:33:58 -07:00
35 lines
920 B
Bash
35 lines
920 B
Bash
#!/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" == "" ]; then
|
|
echo " __"
|
|
echo " / _) -- I'm DinoPass and I can help you administer"
|
|
echo " _.----._/ / your passwords in a dino-easy way!"
|
|
echo "/ /"
|
|
echo ""
|
|
echo ""
|
|
echo "Use 'dinopass simple' to generate a simple password"
|
|
echo " lower case letters and number"
|
|
echo ""
|
|
echo "Use 'dinopass strong' to generate a strong password"
|
|
echo " mixed upper and lowercase letters, a special character, plus numbers"
|
|
elif [ "$1" == "simple" ]; then
|
|
echo ""
|
|
curl $SIMPLE_URL
|
|
echo ""
|
|
echo ""
|
|
elif [ "$1" == "strong" ]; then
|
|
echo ""
|
|
curl $STRONG_URL
|
|
echo ""
|
|
echo ""
|
|
else
|
|
echo "Invalid command. Use 'simple' or 'strong'."
|
|
fi
|