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`