通过expect免自动输入密码登陆远程服务器
Posted 何石的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过expect免自动输入密码登陆远程服务器相关的知识,希望对你有一定的参考价值。
通过expect免自动输入密码登陆远程服务器
1、前提必须已经安装expect
2、新建login.sh,文件内容如下
#!/usr/bin/expect -f
spawn ssh [email protected]
expect "password:"
send "passwordR\r"
interact
3、执行./login.sh即可登陆远端服务器
以上是关于通过expect免自动输入密码登陆远程服务器的主要内容,如果未能解决你的问题,请参考以下文章