6

我不知道发生了什么,但我没有从执行的远程命令中获得完整的输出,可能是因为预期内部缓冲区正在被执行。

    proc SendCommands { Commands } {
            global prompt log errlog
                    foreach element [split $Commands ";"] {
                                    expect {
                                           -re $prompt
                                            {send -- "$element\r"}
                                           }
                                    set outcome "$expect_out(buffer)"
                             foreach line [split $outcome \n] {
                                       foreach word [regexp -all -inline {\S+} $line] {

                                            if {( [string index [string trimleft $line " "] 0 ] == "%")} {
                                              puts  "$outcome"
                                               exit 1
                                            }
                                      }
                            }
                    puts "$outcome"
                   }

    }

    set timeout 30

    foreach  host [ split $hosts "\;" ] {
            spawn ssh -o "StrictHostKeyChecking no" "$username@$host"
    match_max   10000000

    expect {
      timeout { send_user "\nFailed to get password prompt\n"; exit 1 }
      eof { send_user "\nSSH failure for $host\n"; exit 1 }
           "*?assword:*"
          {
           send -- "$password\r"
          }

    }


    expect {
              timeout { send_user "\nLogin incorrect\n"; exit 1 }
              eof { send_user "\nSSH failure for $host\n"; exit 1 }

         -re  "$prompt"
           { send -- "\r" }
           }
    set timeout 300
    SendCommands "$Commands"
    }

这就是我执行它的方式:

./sendcommand aehj SWEs-elmPCI-B-01.tellus comnet1 "terminal length 0;show int description" "(.*#)$"

我只有在删除时才能得到完整的输出,log user 0但是当我在上面的函数 sendcommands 中使用 puts 命令时,我得到了大约 90% 的输出,最后没有显示 10% 的尾随数据。

我想的一种方法是在期望中使用正则表达式的否定,但它似乎不起作用。

                                    expect {
                                           -re ! $prompt
                                            {puts $expect_outcome(buffer)}
                                           }

编辑:当它执行大约 5 或 7 次时,我得到所有输出

4

1 回答 1

2

经过一番搜索后,我想出了这个并且似乎有效,但让我知道任何例外或更好的答案:

然后我设置 match_max = 1000

    expect {
           -re $prompt
          {send -- "$element\r"}

    full_buffer {
        append outcome $expect_out(buffer)
        exp_continue
    }

                                    }
append outcome $expect_out(buffer)
puts $outcome

但是当我设置 match_max = 10000 或 100 时,它仍然会再次失败

于 2013-05-02T10:39:36.350 回答