AI智能
改变未来

shell-expect 模拟交互


系统环境

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

 

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » shell-expect 模拟交互