Expect 小脚本
简介:Expect 可以替系统管理员完成与系统的交互式操作shell > yum -y install expect # 可以通过 yum 安装shell > which expect # 路径/usr/bin/expect例一:shell > cat login.exp#!/usr/bin/expectspawn ssh root@192.168.1.81;expect {"(yes/no)?" { send "yes
"; exp_c...