shell
Posted fengzi7314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 " "; exp_continue } #有出现.ssh/id_rsa字符串的返回 回车键,并且继续 "Enter passphrase" { send " "; exp_continue }#同上 "passphrase again" { send " " } } interact #结束后交给终端
以上是关于shell的主要内容,如果未能解决你的问题,请参考以下文章