码迷,mamicode.com
首页 > 其他好文 > 详细

expect 简单使用

时间:2015-05-16 23:25:41      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:expect   ssh   自动登录   linux   

简单的登陆脚本

这样就不用每次都输入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 自动录制expect脚本

还可以用autoexpect来录制脚本,具体没有用过,如果需要在去尝试

声明:
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/45772249
作者orangleliu 采用署名-非商业性使用-相同方式共享协议

expect 简单使用

标签:expect   ssh   自动登录   linux   

原文地址:http://blog.csdn.net/orangleliu/article/details/45772249

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!