1
This commit is contained in:
Evan Pratten 2023-06-07 23:42:25 -04:00
parent 3f55407ac9
commit b997c20887

View File

@ -85,3 +85,13 @@ extract() {
echo "'$1' is not a valid file!"
fi
}
# Generate a password
genpass() {
if [ $# != 1 ]; then
echo "Usage: genpass <len>"
else
echo $(openssl rand -base64 $1 | tr -d "\n")
fi
}