Support gz for mysqls

This commit is contained in:
斟酌 鵬兄 2016-06-23 15:51:12 +08:00
parent 5cdb134ebc
commit 4de0812ce7

View File

@ -1,15 +1,14 @@
#!/bin/bash
function mysqlo () {
if [[ -z "$1" ]]; then
if [ -z "$1" ]; then
__func_head "SERVER_NAME"
echo
else
PASS=$(grepmysql $1 true)
if [[ -z "$PASS" ]]; then
if [ -z "$PASS" ]; then
echo "Server not found in config: $1"
return 1
fi
PS_SQL=$(grep -i $1 ~/.mysql_pass | awk 'BEGIN{FS=":"}{ print $4 }')
@ -26,20 +25,29 @@ function mysqlo () {
}
function mysqls () {
if [[ -z "$1" ]]; then
__func_head "SERVER_NAME DATABASE_NAME SQL_FILE"
if [ -z "$1" ]; then
__func_head "[z] SERVER_NAME DATABASE_NAME SQL_FILE"
echo
else
GZIP=false
if [ "$1" == "z" ]; then
GZIP=true
shift
fi
USER=$(grep -i $1 ~/.mysql_pass | awk 'BEGIN{FS=":"}{ print $5 }')
PASS=$(grepmysql $1 true)
if [[ -z "$PASS" ]]; then
if [ -z "$PASS" ]; then
echo "Server not found in config: $1"
return 1
fi
mysql -u $USER --password=$PASS -D $2 < $3
if $GZIP; then
gunzip -c $3 | mysql -u $USER --password=$PASS -D $2
else
mysql -u $USER --password=$PASS -D $2 < $3
fi
fi
}