码迷,mamicode.com
首页 >  
搜索关键字:linux系统批量修改密码 expect ssh免交互    ( 1280个结果
ssh登录脚本
1 #!/usr/bin/expect 2 set timeout 100 3 set passwd "your password" 4 spawn shell 5 expect "key" 6 send "$passwd\n" 7 interact 第一行主要用于指明expect执行路径,由于登录... ...
分类:其他好文   时间:2017-03-09 11:58:58    阅读次数:144
自动化运维脚本语言之expect实践学习(1)
一、expect简介expect是一种简单的基于Tcl的脚本语言工具,一个可实现自动交互功能的软件套件,其功能就是进行自动化的人机交互;也能够按照脚本内容里面设定的方式与交互式程序进行“会话”的程序,根据脚本内容expect可以知道程序会提示或反馈什么内容以及什么是正确的应答;..
分类:编程语言   时间:2017-03-07 23:15:16    阅读次数:490
cassandra 存储二进制data
Blob type The Cassandra blob data type represents a constant hexadecimal number defined as 0[xX](hex)+ where hex is a hexadecimal character, such as [ ...
分类:其他好文   时间:2017-03-07 17:57:01    阅读次数:438
Node.js在执行js文件时总是出错 SyntaxError: Unexpected identifier
追问 直接将hello.js文件拖进node.js的窗口后,会在窗口中显示出hello.js文件的路径,回车以后什么都没有发生。 追答 直接打开cmd名利提示符面板输入node.exe 敲个空格,记得别按回车键,然后吧hello.js文件拖上去,然后在回去执行就ok了 追问 直接将hello.js文 ...
分类:Web程序   时间:2017-03-02 12:47:14    阅读次数:439
object is not an instance of declaring class
错误原因:invoke方法的时候,应该是类的实例对象,而不是类本身 解决方法:把 PowerMockito.doReturn(index_expect).when(IndexController.class, "processPage", pageCode, request, response, m ...
分类:其他好文   时间:2017-03-01 18:09:50    阅读次数:358
带账号、密码ssh的脚本
带账号、密码ssh的脚本说明:1、为expect脚本,后缀建议用.exp(写.sh也没关系)2、执行需用expect命令3、登录后可执行想要的命令$cat/usr/local/bin/ssh.exp#!/usr/bin/expexct-fsetip[lindex$argv0]settimeout10spawnsshaa@$ipexpect{"*(yes/no)*"{send"yes\r";exp_continue}..
分类:其他好文   时间:2017-02-28 23:06:16    阅读次数:203
软件测试作业 - fault error failure
给出的题目如下: 我的解答如下: For program 1:1. where i > 0 is the fault , it should be changed to i>= 0 to avoid x is just one element situation. 2.x[] ={} or x[]= ...
分类:其他好文   时间:2017-02-26 12:04:43    阅读次数:281
软件测试Homework 2
关于Fault, Failure, Error 的区别的软件测试作业 ...
分类:其他好文   时间:2017-02-25 18:58:10    阅读次数:224
codevs3342绿色通道(单调队列优化dp)
3342 绿色通道 时间限制: 1 s 空间限制: 256000 KB 题目等级 : 黄金 Gold 3342 绿色通道 3342 绿色通道 时间限制: 1 s 空间限制: 256000 KB 题目等级 : 黄金 Gold 时间限制: 1 s 时间限制: 1 s 空间限制: 256000 KB 空间 ...
分类:其他好文   时间:2017-02-18 11:53:32    阅读次数:274
java开发总体知识复习
随笔-114 文章-0 评论-100 随笔-114 文章-0 评论-100 随笔-114 文章-0 评论-100 随笔-114 文章-0 评论-100 [Java面经]干货整理, Java面试题(覆盖Java基础,Java高级,JavaEE,数据库,设计模式等) 如若转载请注明出处: http:// ...
分类:编程语言   时间:2017-02-17 13:54:41    阅读次数:248
1280条   上一页 1 ... 84 85 86 87 88 ... 128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!