++++++++++++++++++++++++++++++++++++++++
标题: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\r" ; exp_continue }
"password" { send "${password}\r" }
}
expect eof
原文地址:https://www.cnblogs.com/lv1572407/p/12404180.html
时间: 2024-11-05 18:50:51