Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Expect proc,它发送 telnet 登录命令和发送命令。在 telnet proc 里面我做了一个 TFTP 。文件大小为 10MB。但是telent提示不会等到提示出现。它等待超时时间然后熄灭。
有什么方法可以等待 Expect 中的提示。
问候,米通
如果 tftp 文件传输的时间比 Expect 的默认超时时间(10 秒)长,您需要先设置更长的超时时间。例如。对于 60 秒的超时,请使用以下命令开始您的脚本:
set timeout 60
如需更详细的帮助,您最好发布您的 Expect 脚本。