From edd2fa574d78ca49967f6140bb6f5695aaa42228 Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Thu, 7 Mar 2024 20:46:26 +0800 Subject: [PATCH] fix: ... --- tools/misc/dumpsql.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/misc/dumpsql.sh b/tools/misc/dumpsql.sh index 4042c0ca..847bd6fd 100644 --- a/tools/misc/dumpsql.sh +++ b/tools/misc/dumpsql.sh @@ -20,7 +20,7 @@ tables_ic=tables_ic.lst mysql -h ${host} -P ${port} -u ${user} -p${password} -D ${dbname} -e "show tables ; " > tables.lst # dump table struct to install dir -echo -n "dump table struct to install directory ..." +echo -n "dump table struct to install directory ... " while read line do table=`echo $line | cut -d " " -f 1` @@ -30,7 +30,7 @@ while read line echo "done" # dump table struct and data to install dir -echo -n "dump table struct and data to install directory ..." +echo -n "dump table struct and data to install directory ... " while read line do table=`echo $line | cut -d " " -f 1` @@ -40,7 +40,7 @@ while read line echo "done" # dump table struct and data to upgrade, upgvue3 and install dir -echo -n "dump table struct and data to upgrade, upgvue3 and install directory ..." +echo -n "dump table struct and data to upgrade, upgvue3 and install directory ... " while read line do table=`echo $line | cut -d " " -f 1`