#test.sh
#!/bin/bash
dir=/home/test
whilereadline
do
host=`echo$line|awk‘{print$1}‘`
passwd=`echo$line|awk‘{print$2}‘`
$dir/expect_ssh.sh$host$passwd&
done<$dir/host.txt
#expect_ssh.sh
#!/usr/bin/envexpect
setHOST[lindex$argv0]
setPASSWD[lindex$argv..
分类:
系统相关 时间:
2014-08-05 11:33:10
阅读次数:
243
1.mysql自动登陆,系统自己输入密码(1)安装亿需要的软件[root@db2~]#yuminstallexpect-*(2)在脚本中写入命令#!/usr/bin/expect-f--使用expect软件settimeout2--输出密码时延时2秒spawnmysql-uroot-p--mysql登陆命令expect"system"--mysql的密码send"system\n"--mysql的密码inte..
分类:
数据库 时间:
2014-08-05 03:15:19
阅读次数:
265
利用expect的,首先查看expect,命令:which expect#!/usr/bin/expect -fspawn ssh 用户名@ip地址expect "assword:"send "password\r"interact自动输入密码,切换目录#!/usr/bin/expect -fspa...
分类:
其他好文 时间:
2014-08-04 10:37:46
阅读次数:
319
#!/usr/bin/expect -fspawn telnet 172.16.1.80expect "login" { send "admin\n" expect { "Password" { send "admin\n" } ...
分类:
Web程序 时间:
2014-08-02 20:51:24
阅读次数:
269
Expect是一个用来实现自动交互功能的软件套件(Expect[isa]softwaresuiteforautomatinginteractivetools)。Expect语言是基于Tcl的,作为一种脚本语言,Tcl具有简单的语法:cmdargargarg一条Tcl命令由空格分割的单词组成。第一个单词是命令名称,其余的是命令参数。脚本代码如下:#..
分类:
其他好文 时间:
2014-08-01 20:10:53
阅读次数:
272
--Strace跟踪解决expect乱码问题----------------------------------2014/07/27情景:需要在本机抓去另外一台远程数据库中的数据。执行语句:./ersh.exp "export LANG=en_US.UTF-8;mysql -uroot -S /tm...
分类:
其他好文 时间:
2014-07-27 23:03:59
阅读次数:
227
核心提示:先列出 HessianPHP 的错误提示: CURL transport error: transfer closed with outstanding read data remaining 基础知识背景: 1)“Expect: 100-continue”的来龙去脉: HTTP/1.1 协议里设计100 (Co...
分类:
其他好文 时间:
2014-07-21 10:17:53
阅读次数:
226
Dictionaries have a method called items that returns a list of tuples, where each tuple is a key-value pair. As you should expect from a dictionary, t...
分类:
其他好文 时间:
2014-07-19 23:02:40
阅读次数:
372
UVA 11427 - Expect the Expected
题目链接
题意:玩一个游戏,赢的概率p,一个晚上能玩n盘,如果n盘都没赢到总赢的盘数比例大于等于p,以后都不再玩了,如果有到p就结束
思路:递推,dp[i][j]表示玩i盘,赢j盘的概率,那么一个晚上玩了n盘小于p的概率递推式为:
dp(i,j)=dp(i?1,j)?(1?p)+dp(i?1,j?1)?p
总和为...
分类:
其他好文 时间:
2014-07-17 16:30:01
阅读次数:
171