金鹏堡水果日记

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

2018-03-06  本文已影响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
上一篇 下一篇

猜你喜欢

热点阅读