Coincidir com uma string com uma substring em Esperar scripts

0

Eu tenho uma saída como esta:

Node Name                     Status        IP Address
======================================================
bw2acn0                      ENABLED      x.x.x.x
bw2acn1                      ENABLED     x.x.x.x
bw2dvn0                      ENABLED     x.x.x.x
bw2dvn1                      ENABLED     x.x.x.x
bw2vm0                       ENABLED      x.x.x.x
bw2vm1                       ENABLED      x.x.x.x

e quero criar um loop para ver se essa saída contém algum nome dos aplicativos.

#!/opt/tools/unsupported/expect-5.39/bin/expect

set HOST [ lindex $argv 0 ]
set USER [ lindex $argv 1 ]
set PASSWORD [ lindex $argv 2 ]
set APP1 [ lindex $argv 3 ]
set APP2 [ lindex $argv 4 ]
set APP3 [ lindex $argv 5 ]
set APP4 [ lindex $argv 6 ]

spawn ssh -l $USER $HOST
expect_after eof {exit 0}
set timeout 120

expect "password:" { send "$PASSWORD\r" }

expect "~]#" { set buff $expect_out(buffer)
foreach i $APPS {
     if {[regexp {"${i}"} $buff]} {
    log_file ../report.txti
            send_log "Commit nodes on $i ------------------------------- Passed\n\n"
            puts "*********************paased"
    } else {
    log_file ../report.txt
            send_log "Commit nodes on $i ------------------------------ Failed\n\n"
            puts "******************failed"
        }

}
}
log_file
send "\r"

expect "~]#" { send "date\r" }
expect "~]#" { send "exit\r" }

mas tudo que eu obtenho é que ele falha, embora deva acontecer.

    
por Bebe 03.04.2017 / 15:56

1 resposta

1
if { $buff match {*$APP$i*} } {

O que é match ? Existe nada na documentação expr que usa esse termo. Além disso, de onde vem a variável APP ? Você tem APP1 e assim por diante, mas não APP .

O grupo de comandos string pode corresponder a uma string com string match , e um array (que outras línguas chamam de matriz hash ou associativa) provavelmente melhor agrupa os nomes de aplicativo (nó?) em vez de tentar usar uma variável como um nome de variável:

set theapps(app1) foo
set theapps(app2) bar
set theapps(app3) zot

set buff "blah bar blah"

foreach {name value} [array get theapps] {
    if {[string match "*$value*" $buff]} {
        puts "ok - $name $value"
    } else {
        puts "not ok - $name $value"
    }
}

Quando executado, corresponde a bar para app2 :

$ tclsh choices
not ok - app3 zot
not ok - app1 foo
ok - app2 bar
$ 

Uma segunda opção é usar uma lista de itens para procurar. Isso pode ser feito deslocando os nomes que não são do aplicativo para fora dos argumentos e, em seguida, fazendo o loop dos itens restantes:

proc shift {list} {
    set result ""
    upvar 1 $list ll
    set ll [lassign $ll result]
    return $result
}

set HOST [shift argv]
set USER [shift argv]
set PASSWORD [shift argv]

puts "leading args: >$HOST< >$USER< >$PASSWORD<"

set buff "blah bar blah"

foreach substr $argv {
    if {[string match "*$substr*" $buff]} {
        puts "match >$buff< on >$substr<"
    }
}
    
por 03.04.2017 / 16:52