码迷,mamicode.com
首页 >  
搜索关键字:Expect    ( 1278个结果
expect 示例
#!/usr/bin/expect set timeout 30 set IP [lindex $argv 0] set USER [lindex $argv 1] spawn ssh $USER@$IP #expect "Are you sure you want to continue conn ...
分类:其他好文   时间:2019-02-13 22:32:47    阅读次数:198
expect spawn not found
expect实现自动登录的脚本时报expect spawn not found 原来linux 执行sh脚本有两种方式,一种时将脚本作为sh 的命令行参数,另一种时将脚本作为具有执行权限的可执行脚本 将脚本作为sh 的命令行参数运行的方式如下 sh test.sh 或 sh /root/test.s ...
分类:其他好文   时间:2019-02-12 18:53:57    阅读次数:144
expect 实例
借鉴:https://www.cnblogs.com/liujiacai/p/9046849.html ...
分类:其他好文   时间:2019-02-12 15:53:58    阅读次数:203
expect的使用
变量参数变量if条件语句变量定义:setvarvalue eg:setpasswd "1234"打印expect脚本信息,可用send_user、puts用法类似shell中echo[root@xtexpects]#catvar.exp#!/usr/bin/expectsetpasswd"1234"puts$passwdsend_user"$passwd\n
分类:其他好文   时间:2019-02-11 21:27:41    阅读次数:558
【expect安装】
直接在root下输入expect,如下示例,说明已经安装expect 如果报未找到,则需要安装 如果能连到外网,可以使用yum安装 yum install expect yum install expect-devel yum install tcl b.如果不能连外网,只能使用源码编译安装 手动下 ...
分类:其他好文   时间:2019-02-11 18:34:45    阅读次数:205
Go36-40,41-io包中的接口和工具
字符操作和字节操作类型的接口;io.CopyN函数举例;接口扩展和实现;集中示例展示;io包中的接口;写入操作相关接口;总结
分类:其他好文   时间:2019-02-05 00:37:45    阅读次数:220
[shell脚本]-在shell中定义expect function
现在需要把expect和shell脚本内容全部合并在shell脚本中 可以用shell function 里面定义expect
分类:系统相关   时间:2019-02-04 14:06:41    阅读次数:206
CSU-1908 The Big Escape
CSU "1908" The Big Escape Description There is a tree like prison. Expect the root node, each node has a prisoner, and the root node is the only exit. ...
分类:其他好文   时间:2019-02-04 12:49:43    阅读次数:160
android string xml 转译 特殊字符问题
在编辑 string.xml 文件的时候,字符之间的空格用 Space 键是能显示出效果的的,但是字符后面如果需要添加空格,直接 Space 键是不管用的,此时 空格应该用 &#160;来表示; 如: <string name="score">Score : &#160;</string> 》 这样 ...
分类:移动开发   时间:2019-02-02 23:24:56    阅读次数:289
about unit test
Use unify unit test framework CPPUnit 1.12.1/Visual stdio Unit is a class or a function Test per major component Test by developer Set up clean enviro ...
分类:其他好文   时间:2019-01-30 14:22:33    阅读次数:122
1278条   上一页 1 ... 29 30 31 32 33 ... 128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!