码迷,mamicode.com
首页 >  
搜索关键字:linux系统批量修改密码 expect ssh免交互    ( 1280个结果
Candy( 数学期望 )
math expect...
分类:其他好文   时间:2014-09-16 20:38:21    阅读次数:263
expect用法
1. [#!/usr/bin/expect] 这一行告诉操作系统脚本里的代码使用那一个shell来执行。这里的expect其实和linux下的bash、windows下的cmd是一类东西。 注意:这一行需要在脚本的第一行。 2. [set timeout 30] 基本上认识英文的都知道这是设置超时时...
分类:其他好文   时间:2014-09-15 22:42:39    阅读次数:664
linux expect自动登录ssh,ftp
expect是一种能够按照脚本内容里面设定的方式与交互式程序进行“会话”的程序。根据脚本内容,Expect可以知道程序会提示或反馈什么内容以及 什么是正确的应答。它是一种可以提供“分支和嵌套结构”来引导程序流程的解释型脚本语言。shell功能很强大,但是不能实现有交互功能的多机器之前的操作,例如ss...
分类:系统相关   时间:2014-09-12 18:55:33    阅读次数:375
expect 批量修改密码(无密码ssh登入就不要用这个了)
#!/bin/bashforipin`catiplist.txt`dopwd=`mkpasswd-l12-s0-C0`grep-q$ip/root/pwd.log&&passwd=$(grep$ip/root/pwd.log|cut-d:-f2)||passwd=123456expect-c"spawnsshroot@$ippasswdexpect{\"*yes/no*\"{send\"yes\r\";exp_continue}\"*password*\"{send\"$passwd\r\";..
分类:其他好文   时间:2014-09-11 19:33:52    阅读次数:237
UVA - 11427 Expect the Expected (DP+概率)
Description Problem A Expect the Expected Input: Standard Input Output: Standard Output   Some mathematicalbackground. This problem asks you to compute the expected value of arandom variable...
分类:其他好文   时间:2014-08-29 16:03:58    阅读次数:218
shell实现自动回车输入
#!/bin/baship="172.16.1.113"command="ssh$ip"expect-c"spawn$command;expect{\"Areyousureyouwanttocontinueconnecting(yes/no)?\"{send\"yes\r\";exp_continue}}"
分类:其他好文   时间:2014-08-24 10:23:32    阅读次数:414
spawn命令和expect
#!/usr/bin/expectset timeout 30spawn ssh fangkui@172.100.101.150expect { "fangkui@172.100.101.150's password:" {send "652289237\r"}}interact
分类:其他好文   时间:2014-08-19 16:27:34    阅读次数:216
自动发送密码抓取远程日志用Shell脚本如何实现?
在linux系统中,如何用shell脚本抓取远程日志?分析线上的日志会有一个困境,机器太多,如果每台都登录上去看不太现实,但是下载下来更麻烦因为每台SCP都要求输入密码。于是我便写了一个自动抓取远程日志的脚本,实现在基本功能。代码:#!/usr/bin/expect -fif { $argc !=1...
分类:其他好文   时间:2014-08-15 23:40:09    阅读次数:327
expect实现自动化交互(转载)
综述:expect主要包含三部分,spawn,expect和sendspawn实现交互命令的劫持,是自动化交互的基础;然后可以用expect来进行结果查询;expect实现对交互命令输出的解析,得到关键字的查询,如password,user,然后停止,等待交互;send对解析字段内容尽心输入;如pa...
分类:其他好文   时间:2014-08-15 14:08:48    阅读次数:287
mysql输出信息保留++--边框方法
我这方法是通过expect实现的。安装expectyuminstall-yexpect操作:[root@ln-slave~]#cattest.sh/usr/local/mysql/bin/mysql-e"selectversion();"[root@ln-slave~]#lltest.sh-rwxr-xr-x1rootroot5008-1316:44test.sh[root@ln-slave~]#shtest.sh+------------+|version()|+------..
分类:数据库   时间:2014-08-13 19:14:08    阅读次数:424
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!