11 lines
165 B
Bash
Executable File
11 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
expect << EOF
|
|
spawn telnet jf16mb-ctrl
|
|
expect -re ".*>"
|
|
send "watch /power_control_user/monitor | grep -i flow \r"
|
|
expect -re ".*>"
|
|
send "exit\r"
|
|
EOF
|
|
|
|
|