系统环境
centos7
yum -y install expect
shell脚本
[code]#!/usr/bin/expectspawn ssh [email protected]#执行命令expect{\"(yes/no)?\"{ send \"yes/r\";exp_continue}#匹配关键字后执行命令\"password:\"{ send \"123456\\r\"}}expect\"]#\"send \"ifconfig\\r\"send \"exit\\r\"#退出expect eof