0
我正在嘗試將期望腳本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
的反應如何?