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      #结束后交给终端       
View Code

 

以上是关于shell的主要内容,如果未能解决你的问题,请参考以下文章

shell 脚本 片段

vue2.0 代码功能片段

nodejs常用代码片段

sh shell片段

常用python日期日志获取内容循环的代码片段

Eclipse 中的通用代码片段或模板