mirror of
https://github.com/Chewbaccalakis/random.git
synced 2026-07-12 13:33:58 -07:00
21 lines
387 B
Bash
21 lines
387 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" == "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
|