标签:exp 自己 模拟 continue chm 一个 分割 路径 目录
主要思想是在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
标签:exp 自己 模拟 continue chm 一个 分割 路径 目录
原文地址:https://www.cnblogs.com/efan/p/12141637.html