This commit is contained in:
2024-03-07 20:46:26 +08:00
parent c452cda894
commit edd2fa574d

View File

@@ -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 mysql -h ${host} -P ${port} -u ${user} -p${password} -D ${dbname} -e "show tables ; " > tables.lst
# dump table struct to install dir # 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 while read line
do do
table=`echo $line | cut -d " " -f 1` table=`echo $line | cut -d " " -f 1`
@@ -30,7 +30,7 @@ while read line
echo "done" echo "done"
# dump table struct and data to install dir # 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 while read line
do do
table=`echo $line | cut -d " " -f 1` table=`echo $line | cut -d " " -f 1`
@@ -40,7 +40,7 @@ while read line
echo "done" echo "done"
# dump table struct and data to upgrade, upgvue3 and install dir # 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 while read line
do do
table=`echo $line | cut -d " " -f 1` table=`echo $line | cut -d " " -f 1`