美文网首页
mac iterm2 ssh免密登录脚本

mac iterm2 ssh免密登录脚本

作者: Source_ | 来源:发表于2019-04-07 20:46 被阅读0次
    set timeout 30  
    spawn ssh -p 22 [lindex $argv 0]@[lindex $argv 1]  
    expect {  
            "(yes/no)?"  
            {send "yes\n";exp_continue}  
            "password:"  
            {send "[lindex $argv 2]\n"}  
    }  
    interact 
    

    iterm2进入profiles选项的command
    expect 脚本路径 用户名 服务器ip 密码

    相关文章

      网友评论

          本文标题:mac iterm2 ssh免密登录脚本

          本文链接:https://www.haomeiwen.com/subject/nzreiqtx.html