【13】编写shell-备份mysql数据
# !/bin/bash#******************************************************
# Author : 秋天枫叶35
# Last modified : 2024-04-25
# Filename : dbbackup-sql.sh
# Description : 备份mysql数据库sql语句
#*******************************************************# 定义变量
host="192.16.x.x"
db_passwd="db密码"
port=db端口
db_user="db用户"
db_path="/db_backup/dbback"
db_date=`date '+%Y%m%d%H%M'&#