Mac實現iTerm2 免登陸ssh服務器

在你電腦的任意位置建立自動登陸的腳本shell

  1. touch itermSsh.sh
  2. vim itermSsh.sh
  3. shell
#!/usr/bin/expect -f
set user _user
set host _host
set password _password
set timeout -1
spawn ssh $user@$host
expect "*assword:*"
send "$password\r"
interact
expect eof
複製代碼

tip:替換_user用戶名, _host服務器地址, _password密碼vim

  1. 打開iTerm的Preferences -> 切換到Profiles Tab -> new profile -> 在Command那一個輸入框內寫上itermSsh.sh的路徑就能夠。

  1. 而後new Tab的時候選擇你建立的profile
相關文章
相關標籤/搜索