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
からわずかの応答:
は今、私はこのスクリプトを持つのでしょうか?