这样就不用每次都输入ssh命令了,使用密码还是有些不安全,谨慎使用
。
#!/usr/bin/expect -f
#filename: auto_login.sh
#author: orangleiu v1.0
# out time is 30 s
set timeout 30
#login first server, middle login
spawn ssh erya@221.7.13.150
expect "password:"
send "xxxxx\r"
interact
还可以用autoexpect来录制脚本,具体没有用过,如果需要在去尝试
声明:
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/45772249
作者orangleliu 采用署名-非商业性使用-相同方式共享协议
原文地址:http://blog.csdn.net/orangleliu/article/details/45772249