欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MacOS使用iTerm2保存ssh账号密码自动ssh登录

程序员文章站 2022-06-17 22:21:58
iTerm保存账号密码自动ssh登录在此目录下新建iterm2ssh.sh文件/usr/local/bin/iterm2ssh.sh#!/usr/bin/expectset timeout 30spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2]expect { "(yes/no)?" {send "yes\n";exp_continue} "password:"...

iTerm保存账号密码自动ssh登录

在此目录下新建iterm2ssh.sh文件
sudo vi /usr/local/bin/iterm2ssh.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

:wq 保存退出

添加权限
chmod a+x ./iterm2ssh.sh

MacOS使用iTerm2保存ssh账号密码自动ssh登录

在Send text at start 中输入 iterm2ssh.sh 22(端口) 账号 服务器地址 密码

本文地址:https://blog.csdn.net/sunlihuo/article/details/107331762