zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Mac系统下,让Iterm 4 来记住常用的登录账号和密码

密码密码系统Mac 常用 登录 账号 记住
2023-09-27 14:28:39 时间

文章转自 https://www.jianshu.com/p/3757554b907d

 

/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

 

 

然后再profile 里可以选择不同的服务器

 

其它items 配置,参考文档

https://www.yuque.com/wangdd/blog/ba84a7

https://www.yuque.com/wangdd/blog/gon16g

 

https://xiaokefu.com.cn/blog/323.html