colin00 2020-01-02
主要思想是在iterm2的profile里自动执行命令,需要有个脚本模拟用户登陆步骤
第1个参数是用户名,第2个参数是host,第3个参数是密码。
#!/usr/bin/expect set timeout 30 spawn ssh [lindex $argv 0]@[lindex $argv 1] expect { "(yes/no)?" {send "yes\n";exp_continue} "password:" {send "[lindex $argv 2]\n"} } interact
注意:保存到自己设置到一个目录里,记得设置执行权限: chmod 755 文件名.sh