0

我只想做一个脚本,通过 ssh 连接到多个设备(有时是三个设备,有时是十个,......)并在其中执行相同的命令。

例如:

如果我执行./script.sh ipaddress1 ipaddress2 ipaddress5 我想对所有设备(IP 地址 1、2 和 5)执行一个 ssh,以执行一个命令并关闭会话。但我的问题是只有我可以连接到第一台设备。在连接到最后一个设备之前,我该如何做一个循环?

#!/usr/bin/expect -f

set list_ip [lindex $argv 0]

foreach ip $list_ip {
spawn ssh -l NA $ip
  expect "password:"
  send "pepe\n"
  expect "#"
  exp_send "sh linecard all\n\r"
  send "\n"
  send "exit\n"
  send "\n"

expect eof
}
expect "%"
4

1 回答 1

1

嗯,很简单。遍历argv列表(所有参数),而不是第一个参数:

#!/usr/bin/expect -f
foreach ip $argv {
    spawn ssh -l NA $ip
    expect "password:"
    send "pepe\n"
    expect "#"
    exp_send "sh linecard all\n\r"
    send "\n"
    send "exit\n"
    send "\n"

    expect eof
}
于 2013-10-11T12:33:09.960 回答