🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 访问剪切板 shift+command+h ### 分创操作 command+d shift+conmand+d ### 主题操作 [Iterm2 + Oh My Zsh打造终极舒适体验终端](https://zhuanlan.zhihu.com/p/37195261) ### 添加服务器 `command+,`唤起`profile` ![image-20200502105918956](/Users/zhangyang/Library/Application Support/typora-user-images/image-20200502105918956.png) #### 创建`item2login.sh` 目录:`/usr/local/bin` ```bash #!/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 ``` `command+o`唤起`profiles`双击即可连接