#!/usr/bin/expect
if{$argc!=2}{#首先注意大话号,彼此之间需要空格
send_user"USAGE:expect_sshkey.expfilehost"
exit
}
#definevar
setfile[lindex$argv0]
sethost[lindex$argv1]
setpassword"12345"
#spawn
spawnssh-copy-id-i$file"-p52113jpinsz@$host">/dev/null2&..
分类:
其他好文 时间:
2017-05-26 21:46:32
阅读次数:
225
小型自动化运维--expect脚本之指定ip,指定文件进行同步操作#vim5.expect#!/usr/bin/expectsetpasswd"wtf"sethost[lindex$argv0]setfile[lindex$argv1]spawnrsync-av$fileroot@$host:$fileexpect{"yes/no"{send"yes\r"}"password:"{send"$passwd\r"}}expecteof对5.expect授予执..
分类:
其他好文 时间:
2017-04-25 15:09:27
阅读次数:
188
时间:2016-12-17 18:07 ——文件上传概述上传不能使用BaseServlet1、文件上传的作用 例如网络硬盘,就是用来上传和下载文件的。2、文件上传对表单的限制 1)必须使用表单,而不能是超链接 2)表单的method必须是POST,而不能是GET 3)表单的enctype必须是mul ...
分类:
编程语言 时间:
2017-02-07 18:50:54
阅读次数:
229
系统:android4.4及其以上 功能:app中拍照, 并实现浏览、删除照片操作。 实现: 1.拍照,存储到指定路径path 2.通知系统多媒体数据库刷新数据。 主要使用MediaScannerConnection,该类向应用提供了将新增多媒体文件发送给多媒体扫描服务的方法,进而将数据写入到系统多 ...
分类:
移动开发 时间:
2016-12-17 14:21:29
阅读次数:
295
#!/usr/bin/expect-fsetip[lindex$argv0]setpasswd[lindex$argv1]setpath[lindex$argv2]setfile[lindex$argv3]setcmd[lindex$argv2]spawnscp$filepasswordusernameroot@${ip}:$pathexpect"password:*"send"${passwd}\r"spawn/usr/bin/sshroot@${ip}expect"password:"send"${pas..
分类:
其他好文 时间:
2016-12-15 18:24:02
阅读次数:
140
fenfa_sshkey.exp#!/usr/bin/expect
if{$argc!=2}{
send_user"usage:expectfenfa_sshkey.expfilehost\n"
exit
}
setfile[lindex$argv0]
sethost[lindex$argv1]
setpassword"123456"
spawnssh-copy-id-i$file"-p22bier888@$host"
expect{
"yes/no"{send"yes\r";exp_continue}
"*..
分类:
其他好文 时间:
2016-12-09 10:52:36
阅读次数:
148
上一篇讲了使用JavaMail发送普通邮件(【Mail】JavaMail介绍及发送邮件(一)),本例讲发送复杂的邮件(带有附件的邮件) 生成一封复杂的邮件 发送本地邮件文件 新建一个Demo4.类,如下: 1 package com.hd.javamail; 2 3 import java.io.F ...
分类:
编程语言 时间:
2016-12-06 20:36:19
阅读次数:
254
一.首先登录ftp服务器:命令行 lftp user@ip 上传:put 下载: get 二. 关于FTP传输模式与传输的方式 众所周知,FTP传输有两种工作模式,Active Mode和Passive Mode(主动模式和被动模式),简单描述连接过程如下: 1.主动模式的连接过程是:客户端向服务器 ...
分类:
其他好文 时间:
2016-11-01 16:43:34
阅读次数:
231
为方便用户处理文件上传数据,Apache 开源组织提供了一个用来处理表单文件上传的一个开源组件( Commons-fileupload ),该组件性能优异,并且其API使用极其简单,可以让开发人员轻松实现web文件上传功能,因此在web开发中实现文件上传功能,通常使用Commons-fileuplo ...
分类:
Web程序 时间:
2016-10-24 23:47:43
阅读次数:
346
private void export_button_ActionEvent(ActionEvent e) throws IOException, WriteException { // TODO Auto-generated method stub try{ fileChooser.setFile ...
分类:
编程语言 时间:
2016-05-17 17:39:58
阅读次数:
154