5 lines
165 B
Bash
Executable File
5 lines
165 B
Bash
Executable File
echo "This tool is used to add user to access phpmyadmin.";
|
|
read -p "Account: " account
|
|
read -s -p "Password: " password
|
|
../bin/htpasswd -b users $account $password
|