您的位置:首页技术文章
文章详情页

linux - 如何编写expect脚本自动导入mysql数据库

浏览:29日期:2022-06-15 17:07:09

问题描述

我的脚本是这样的test.sh

#!/usr/bin/expectset password rootspawn mysql -u root -pexpect 'password:'send '$passwordrn'send 'drop database blog_api;rn'send 'CREATE DATABASE `blog_api` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;rn'send 'exit;rn'expect 'Bye'send 'mysql -uroot blog_api < 2017-01-09-12:00:09.sql;rn'expect 'Enter password:'send '$passwordrn'interact

导出是没有问题的,但是导入的话没有效果,大神求教。。。

问题解答

回答1:

你脚本中已经设置了变量password的值,为什么不直接用shell呢,直接执行命令mysql -uroot -p $password blog_api < 2017-01-09-12:00:09.sql或者写成shell脚本不就可以导入了。

回答2:

为啥非要用expect呢,这个命令命名可以直接用shell来写的

#!/usr/bin/env bashmysql -uroot -p ’root’ -e ’drop database if exists blog_api; CREATE DATABASE `blog_api` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;’mysql -uroot -p ’root’ blog_api < 2017-01-09-12:00:09.sql

如果非要用expect的话,试试下面这样

#!/usr/bin/expectset password ’root’spawn mysql -uroot -p -e 'drop database if exists blog_api; create database `blog_api` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;'expect 'password:'send '$passwordr'expect eofspawn mysql -uroot blog_api < 2017-01-09-12:00:09.sql;expect 'password:'send '$passwordr'expect eof

相关文章: