标签:end expect 出现 isp view 命令 pen cab shell
expect自动交互编程
#!/usr/bin/expect #使用的解释器 set timeout 30 #设置超时时间为30秒 #spawn ssh 127.0.0.1 spawn ssh-keygen #spawn为格式,后面写shell命令 expect { ".ssh/id_rsa" { send "\r"; exp_continue } #有出现.ssh/id_rsa字符串的返回 回车键,并且继续 "Enter passphrase" { send "\r"; exp_continue }#同上 "passphrase again" { send "\r" } } interact #结束后交给终端
标签:end expect 出现 isp view 命令 pen cab shell
原文地址:https://www.cnblogs.com/fengzi7314/p/10206321.html