> Linux教程 > 系统运维 >

免输入密码,自动登录远程linux服务器

#!/usr/bin/expect
set timeout 30
spawn ssh -l dy 10.0.0.100
expect "password:"
send "mypassword\r"
interact

(责任编辑:IT)