From d4a41457cb9a26340dcfaf85b0e64c81749f7831 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Fri, 16 Dec 2016 10:14:40 +0100 Subject: [PATCH] MySQL: fix typos in my-add.sh --- mysql/files/my-add.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mysql/files/my-add.sh b/mysql/files/my-add.sh index 3f387ce6..34a8978d 100644 --- a/mysql/files/my-add.sh +++ b/mysql/files/my-add.sh @@ -1,6 +1,6 @@ #!/bin/sh -echo "Add an acount / database in MySQL" +echo "Add an account / database in MySQL" echo "Enter the name of the new database" read db @@ -8,12 +8,12 @@ echo "Enter account with all right on this new database" echo "(you can use existant account)" read login -echo -n "This account is already existant ? [y|N] " +echo -n "Does this account already exist ? [y|N] " read confirm if [ "$confirm" != "y" ] && [ "$confirm" != "Y" ]; then -echo "Waning, if account is existant, it will be reset !" -echo -n "Enter new password for new MySQL account (empty for random):" +echo "Warning, if account exists, it will be reset !" +echo -n "Enter new password for new MySQL account (empty for random): " read -s password echo ""