我正在尝试将期望脚本 ssh-ing 到服务器的部分输出写入日志文件。
现在我有这个脚本:
#!/usr/bin/expect -f
spawn telnet 192.168.20.222
match_max 10000
expect "*?to continue*"
send -- "\r"
send -- "show interfaces 1 \r"
expect -- "*?2626#*"
send -- "show interfaces 2 \r"
expect -- "*?2626#*"
send -- "exit \r"
expect -- "*?2626>*"
send -- "exit \r"
expect "*?y/n*"
send -- "y \r"
我怎样才能将其更改为仅输出到文件“log.txt”show interfaces 1
和
来自的响应show interfaces 2
?