使用expect和mysqldump备份 expect expect是一个免费的编程工具语言,用来实现自动和交互式任务进行通信,而无需人的干预. 例如,执行shell脚本的过程中,需要输入用户名.密码等,可使用expect来完成自动输入. 安装expect yum install tcl yum install expect 脚本 shell脚本 #! /bin/bash currentTime=`date +%s` sql="/home/cg/backup/myblog_$currentTim…