#!/usr/bin/expect
set timeout 60
spawn /usr/bin/ssh -D 7070 -g [email protected]
# 这里的 user 为你自己的用户名,yourserver.com 为你自己的服务器域名或 ip
expect {
"password:" {
send "xxxxx\r"
#这里的 xxxxx 改为你自己的密码
}
}
interact {
timeout 60 { send "\r "}
}
别忘记附上执行权限chmod -x ssh.sh