test/lib/functions.sh
2023-01-05 20:29:17 +00:00

7 lines
148 B
Bash

create_password() {
# eval $1_var=$1
# echo "$postgres_var"
SECRET=`tr -cd '[:alnum:]' < /dev/urandom | fold -w32 | head -n1`
echo "$SECRET";
}