利用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
The HERO country is attacked by other country. The intruder is attacking the capital so other cities must send supports to the capital. There are some roads between the cities and the goods must be tr...
分类:
其他好文 时间:
2014-08-03 18:06:55
阅读次数:
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
在《Pragmatic Ajax A Web 2.0 Primer 》中对readyStae状态的介绍,摘译如下:0: (Uninitialized) the send( ) method has not yet been invoked.1: (Loading) the send( ) metho...
分类:
其他好文 时间:
2014-08-02 12:20:23
阅读次数:
219
网上太多发邮件储存过程,我就不转发了,弄个简单的作为示例;
create or replace procedure Send_mail(mail_body varchar2) is
smtp_conn utl_smtp.connection;
user_name varchar2(20) := utl_raw.cast_to_varchar2(utl_encode.base64_...
分类:
数据库 时间:
2014-08-01 20:00:12
阅读次数:
384
send函数 int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论是客户还是server应用程序都用send函数来向TCP连接的还有一端发送数据。客户程序一般用send函数向server发送请求,而server则通经常使用...
分类:
其他好文 时间:
2014-08-01 13:31:51
阅读次数:
174
今天项目要上线,在Archive时报错:ARC forbids explicit message send of 'release''release' is unavailable: not available in automatic reference counting mode 项目中有几个....
分类:
移动开发 时间:
2014-08-01 10:47:51
阅读次数:
277
//effect:send ntp packet and get the ntp packet ,make the time OK//2014.7.31 is OK//#include #include #include #include #include #include #include #in...
分类:
其他好文 时间:
2014-07-31 20:18:57
阅读次数:
263
send函数intsend(SOCKETs,constcharFAR*buf,intlen,intflags);不论是客户还是服务器应用程序都用send函数来向TCP连接的另一端发送数据。客户程序一般用send函数向服务器发送请求,而服务器则通常用send函数来向客户程序发送应答。该函数的第一个参数...
下面假定已经学习过基本的socket编程(socket, bind, listen, accept, connect, recv, send, close),并且对异步/callback有基本的认识。基本的socket编程是阻塞/同步的,每个操作除非已经完成或者出错才会返回,这样对于每一个请求,要使...
分类:
其他好文 时间:
2014-07-31 16:05:26
阅读次数:
349