1、前提必须已经安装expect
2、新建login.sh,文件内容如下
#!/usr/bin/expect -f
spawn ssh [email protected]
expect "password:"
send "passwordR\r"
interact
3、执行./login.sh即可登陆远端服务器
时间: 2024-10-14 18:50:34
1、前提必须已经安装expect
2、新建login.sh,文件内容如下
#!/usr/bin/expect -f
spawn ssh [email protected]
expect "password:"
send "passwordR\r"
interact
3、执行./login.sh即可登陆远端服务器