Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
660 views
in Technique[技术] by (71.8m points)

linux - How to create a MySQL database from dump file in expect/TCL script?

I just wanted to execute this bash command in expect script:

mysql -u root -h localhost -proot dbTest < temp.sql

I added spawn to the beginning but it is not working. I think "<" symbol means nothing in expect!

Can anyone help me to solve this issue?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

spawn does not support the < direction but you can do like this:

spawn sh -c "mysql -u root -h localhost -proot dbTest < temp.sql"

Seems like you want to run mysql in the non-interactive way so you can also use Expect's system command:

system "mysql -u root -h localhost -proot dbTest < temp.sql"

or Tcl's exec command:

exec mysql -u root -h localhost -proot dbTest < temp.sql >@ stdout 2>@ stderr

You may need to put the whole system or exec command in a catch block in case the mysql fails:

catch {system "mysql ..."} catched
# or
catch {exec mysql ...} catched

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...