在/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个参数。
然后打开iTerm2
的Preference
-Profile
,
Send test at start
按照脚本 端口号 用户名 服务器地址 密码
格式对应填写
然后就可以愉快的使用了
如图1:
图2: image.png
网友评论