From 8c40c8759bed86e75550e49954358a36453f96e8 Mon Sep 17 00:00:00 2001 From: Everton Kozloski Date: Thu, 28 Oct 2021 23:18:19 +0000 Subject: [PATCH] Add 'createmysql.sh' --- createmysql.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 createmysql.sh diff --git a/createmysql.sh b/createmysql.sh new file mode 100644 index 0000000..8cd1915 --- /dev/null +++ b/createmysql.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +mkdir ~/.librography +touch ~/.librography/ + + +echo "Enter the user name for database: " +read password +echo "The Current User Name is $first_name" +echo +echo "Enter other users'names: " +read name1 name2 name3 +echo "$name1, $name2, $name3 are the other users." + +PASS=`pwgen -s 40 1` + +mysql -uroot <