最新 最热

perl dancer 基础4

安装Expect模块配置cpan首先要配置cpan[root@dancer-test ~]# perl -MCPAN -e shell Sorry, we have to rerun the configuration dialog for CPAN.pm due tosome missing paramet...

2022-03-25
0

expect交互式脚本编写

#!/usr/bin/expectset full_name [lrange $argv 0 0]set domain_name [lrange $argv 1 1]set Organization_name [lrange $argv 2 2]set Generic_name [lrange $argv ...

2022-01-12
0

20.34 批量远程执行命令

批量远程执行命令exe.expect 内容#!/usr/bin/expectset host [lindex $argv 0]set passwd "123456"set cm [lindex $argv 1]spawn ssh root@$hostexpect {"yes/no" { send "ye...

2022-01-06
0

20.32 expect脚本指定host和要同步的文件

expect脚本指定host和要同步的文件set timeout 定义超时时间(单位为 秒) -1 为永远不超时指定host和要同步的文件#!/usr/bin/expectset passwd "123123a"set host [lindex $argv 0]set file [lindex $argv ......

2022-01-06
0

20.31 expect脚本同步文件

expect脚本同步文件在一台机器上把文件同步到多台机器上自动同步文件#!/usr/bin/expectset passwd "123456"spawn rsync -av root@192.168.133.132:/tmp/12.txt /tmp/expect {"yes/no" { send "yes......

2022-01-06
0

20.30 expect脚本传递参数

expect脚本传递参数传递参数#!/usr/bin/expectset user [lindex $argv 0] //第一个参数set host [lindex $argv 1] //第二个参数set passwd "123123a"set cm [lindex $argv 2] //第三参......

2022-01-06
0

20.29 expect脚本远程执行命令

expect脚本远程执行命令动远程登录后,执行命令并退出#!/usr/bin/expectset user "root"set passwd "123123a"spawn ssh $user@192.168.133.130expect {"yes/no" { send "yesr"; exp_cont......

2022-01-06
0

20.27 分发系统介绍

分发系统介绍分发系统-expect讲解(也就是一个分发的脚本)场景: 业务越来越大,网站app,后端,编程语言是php,所以就需要配置lamp或者lnmp,最好还需要吧代码上传到服务器上;但是因为业务增加,代码增加,多台机器,就会非常麻烦;这是...

2022-01-06
0

Linux From Scratch(LFS11.0)构建 LFS 系统 - Expect-5.45.4

Expect 软件包包含通过脚本控制的对话,自动化 telnet,ftp,passwd,fsck,rlogin,以及 tip 等交互应用的工具。

2021-10-08
0

httprunner 2.x学习13-自定义校验器(comparator)

当我们需要对返回的结果做较复杂的校验时候,httprunner自带的校验方法无法满足我们的需求,可以自己写校验方法。

2021-04-26
0