iTerm2保存ssh登陆用户名&密码
- ITerm2下载:
链接: https://pan.baidu.com/s/15GlJYihUuPGnebESjC-jKQ 提取码: 5wwg - 下载后解压将ITerm2放到应用程序目录下,运行ITerm2,执行命令
cd ~/.ssh/ touch banwagong
vim banwagong - 将如下脚本粘贴到文本banwagong
#!/usr/bin/expect -f set user 用户名 set host IP/域名 set port 端口号 set password 密码 set timeout -1 spawn ssh $user@$host -p $port expect "*assword:*" send "$password\r" interact expect eof
- ITerm2界面快捷键command+o;
1、 点击新建
2、给当前名字命名
3、选择command
4、expect ~/.ssh/banwagong