美文网首页金鹏堡水果日记
Mac 让 iTerm2 记住SSH用户名密码 expect 脚

Mac 让 iTerm2 记住SSH用户名密码 expect 脚

作者: 沐青之枫 | 来源:发表于2018-03-06 14:51 被阅读549次

    /usr/local/bin目录下新建脚本item2login.sh

    #!/usr/bin/expect
    
    set timeout 30
    spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2]
    expect {
            "(yes/no)?"
            {send "yes\n";exp_continue}
            "password:"
            {send "[lindex $argv 3]\n"}
    }
    interact
    

    这里[lindex $argv 0][lindex $argv 1][lindex $argv 2][lindex $argv 3] 分别代表着4个参数。

    然后打开iTerm2Preference-Profile,
    Send test at start 按照脚本 端口号 用户名 服务器地址 密码格式对应填写
    然后就可以愉快的使用了
    如图1:

    image.png
    图2: image.png

    相关文章

      网友评论

        本文标题:Mac 让 iTerm2 记住SSH用户名密码 expect 脚

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