mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 10:31:09 +00:00
15 lines
180 B
Plaintext
15 lines
180 B
Plaintext
#!/bin/expect
|
|
|
|
set f [open "copt.txt"]
|
|
set cmds [split [read $f] "\n"]
|
|
close $f
|
|
|
|
spawn vtysh
|
|
|
|
foreach command $cmds {
|
|
expect "dell-s6000-16#"
|
|
send "$command\r"
|
|
}
|
|
|
|
interact
|