使用iTerm2 Profiles快捷登录ssh
所属分类:Linux | 发布于 2024-01-05 13:04:46
ssh登录服务器时不用每次输入密码,利用iTerm2的Profile的Command执行登录脚本,自动登录服务器,只需要两步。
1、准备登录脚本
/Users/alan/.ssh/sshTogzyyy.sh
#!/usr/bin/expect
#/Users/alan/.ssh/sshTogzyyy.sh
set timeout 30
set host 8.134.xxx.yyy
set user root
set password 5BdeGY668M
spawn ssh $user@$host
expect {
"(yes/no)?"
{send "yes\n";exp_continue}
"password:"
{send "$password\n"}
}
interact
2、配置Profile
在iTerm2菜单栏Settings打开Preferences,选择Profiles,新建一个Profile,输入Name,Command脚本地址,然后保存即可。