expect 免交互配置互信
Posted lv1572407
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect 免交互配置互信相关的知识,希望对你有一定的参考价值。
++++++++++++++++++++++++++++++++++++++++
标题:expect 免交互配置互信
时间:2020年3月3日
++++++++++++++++++++++++++++++++++++++++
#/usr/bin/env expect
set ip 192.168.100.100
set user root
set password centos
set timeout 5
spawn ssh-copy-id "${user}@${ip} -p 2222"
expect {
"yes/no" { send "yes " ; exp_continue }
"password" { send "${password} " }
}
expect eof
以上是关于expect 免交互配置互信的主要内容,如果未能解决你的问题,请参考以下文章
Expect 自动化控制和测试 Here Document 免交互 Linux- shell编程之免交互
shell编程——Here Document免交互与Expect(免交互,高效率)