当我在 Unix 中执行下面给出的脚本时,它工作正常。
#!/usr/bin/expect -f
spawn telnet 10.123.9.111
expect login {send username\r}
expect password {send password\r}
interact;
当我在 Windows 上执行相同的脚本时,它显示为无法在我安装的 example.pl 上执行 /usr/bin/ expect
expectperl package manager.
有没有办法在 Windows 上添加它的等效动态链接库?
或者,我如何在 Windows 上使用 perl 脚本进行 telnet 登录?