码迷,mamicode.com
首页 >  
搜索关键字:Expect    ( 1278个结果
POJ 2350
Above AverageTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 15028Accepted: 7875DescriptionIt is said that 90% of frosh expect to be above av...
分类:其他好文   时间:2015-05-22 08:13:34    阅读次数:95
shell 脚本获取远程服务器信息并发送邮件
1 [root@zenghui expect]# cat ssh_dsa.exp 2 #!/usr/bin/expect 3 set ip [lindex $argv 0] 4 set pass [lindex $argv 1] 5 set port [lindex $argv 2] 6 set ....
分类:系统相关   时间:2015-05-22 08:12:12    阅读次数:148
expect定期远程登录Juniper防火墙实现定期重新拨号
#!/bin/bash #author:?GaoMing #date:?2015-05-20 #qq:?530035210 #blog:?http://my.oschina.net/pwd/blog? #pppoe?定期重新拨号 logdir=/data/log/shell??????????#日志路径 log=$logdir/log....
分类:其他好文   时间:2015-05-21 20:01:16    阅读次数:177
无密钥登录的自动脚本实现(ssh-copy-id、expect免交互输入脚本)
无密钥登录的自动脚本实现: vim auto_ssh.sh  #!/usr/bin/expect   set timeout 10   set username [lindex $argv 0]   set password [lindex $argv 1]   set hostname [lindex $argv 2]   spawn ssh-copy-id...
分类:其他好文   时间:2015-05-21 12:50:37    阅读次数:115
expect脚本语言用法示例
#!/usr/bin/expect ...
分类:编程语言   时间:2015-05-20 17:56:29    阅读次数:185
linux expect
timeout -1 为永不超时Expect中最关键的四个命令是send,expect,spawn,interact。send:用于向进程发送字符串expect:从进程接收字符串spawn:启动新的进程interact:允许用户交互
分类:系统相关   时间:2015-05-19 18:29:21    阅读次数:157
用expect跳过密码验证的shell范例
#!/bin/bash Local_Dir=‘/tmp/test_huadan‘ Ip=‘192.168.0.221‘ PassWord=‘Lhm0125‘ Des_Dir=‘/tmp/test_huadan‘ List=$(find$Local_Dir-cmin-60) foriin$List do #echo$i if[-f$i] then expect<<EOF#利用expect命令,捕捉Password关键字,然后传入密码,此案例还..
分类:系统相关   时间:2015-05-18 21:04:55    阅读次数:485
sshpass或expect实现ssh自动登录
第一种方法(expect): catexpect.sh #!/usr/bin/expect #使用第一个参数 setlocal_ip[lindex$argv0] #后面的也可以用参数[lindex$argvn] #setpassword[lindex$argv1] #setpassword2[lindex$argv2] #setcommand[lindex$argv3] setlocal_port22 setlocal_userjackchem setlocal_11..
分类:其他好文   时间:2015-05-18 21:01:18    阅读次数:208
expect 简单使用
简单的登陆脚本这样就不用每次都输入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.1...
分类:其他好文   时间:2015-05-16 23:25:41    阅读次数:231
[脚本]为所有节点挂载磁盘
1. 循环遍历所有节点 #!/bin/bash IpPrefix=192.168.1. User=root Pwd=000000 for((i=84;i> tmp/$i echo "$i done!" }& done 2. 拷贝文件到所有节点 #!/usr/local/bin/expect -f s...
分类:其他好文   时间:2015-05-08 14:28:51    阅读次数:134
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!