Esperar saída do buffer de script não mostrando

1

Como posso obter a saída do comando do buffer? Current'y está apenas dizendo "(buffer).

Aqui está o meu script e a saída de depuração:

#!/bin/bash -x
while read p; do
echo $p
{
    /usr/bin/expect -d << EOF
    match_max 10000
    spawn ssh anthony@$p
    expect "password:"
    send "MyPasswordHere\r"
    expect " "
    send "ifconfig |grep -i eth0\r"
    expect " "
    puts "The output is $expect_out(buffer) "
    send "exit\r"
EOF
}
done <List.txt


+ read p
+ echo localhost
localhost
+ /usr/bin/expect -d
expect version 5.45
argv[0] = /usr/bin/expect  argv[1] = -d  
set argc 0
set argv0 "/usr/bin/expect"
set argv ""
executing commands from command file
spawn ssh anthony@localhost
parent: waiting for sync byte
parent: telling child to go ahead
parent: now unsynchronized from child
spawn: returns {2032}

expect: does "" (spawn_id exp15) match glob pattern "password:"? no
anthony@localhost's password: 
expect: does "anthony@localhost's password: " (spawn_id exp15) match glob pattern "password:"? yes
expect: set expect_out(0,string) "password:"
expect: set expect_out(spawn_id) "exp15"
expect: set expect_out(buffer) "anthony@localhost's password:"
send: sending "M00nsh0t@\r" to { exp15 }

expect: does " " (spawn_id exp15) match glob pattern " "? yes
expect: set expect_out(0,string) " "
expect: set expect_out(spawn_id) "exp15"
expect: set expect_out(buffer) " "
send: sending "ifconfig |grep -i eth0\r" to { exp15 }

expect: does "" (spawn_id exp15) match glob pattern " "? no


expect: does "\r\n" (spawn_id exp15) match glob pattern " "? no
Welcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-40-generic x86_64)

 * Documentation:  https://help.ubuntu.com/

Last login: Sun Dec 21 09:23:38 2014 from localhost

expect: does "\r\nWelcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-40-generic x86_64)\r\n\r\n * Documentation:  https://help.ubuntu.com/\r\n\r\nLast login: Sun Dec 21 09:23:38 2014 from localhost\r\r\n" (spawn_id exp15) match glob pattern " "? yes
expect: set expect_out(0,string) " "
expect: set expect_out(spawn_id) "exp15"
expect: set expect_out(buffer) "\r\nWelcome "
The output is (buffer) 
send: sending "exit\r" to { exp15 }
+ read p
    
por Anthony52 21.12.2014 / 18:30

1 resposta

3

Como o seu script expect está em um heredoc não-referenciado, sua variável expect está sendo manipulada como uma variável shell. Mudar

puts "The output is $expect_out(buffer) "

para

puts "The output is \$expect_out(buffer) "

A saída que você vê, ( The output is (buffer) ) é exatamente o que eu esperaria: o shell está expandindo $expect_out para nada antes de entregar o script para esperar.

    
por 21.12.2014 / 23:32

Tags